String fileName = System.getenv("EBEAN_PROPS_FILE");if (fileName == null) { fileName = System.getProperty("ebean.props.file"); if (fileName == null) { fileName = "ebean.properties"; }}
Support for getting the file name from an environment variable and system properties used to be in Ebean v1.
So this is adding support for that back.
Fixed in HEAD