Configuration
You can find a .env.example in the project's root as a reference to start from.
Environment Variables
APP_NAME recommended
Type: StringDefault:
Open CaseApplication name.
APP_ENV recommended
Type: production | local | cicdDefault:
productionApplication environment.
APP_KEY required
Type: StringDefault: -
Base64 encoded application key. Can be generated by running artisan key:generate.
APP_DEBUG
Type: BooleanDefault: `false`
Whether app runs in debug mode or not.
APP_URL recommended
Type: StringDefault: `http://localhost`
APP_PORT recommended
Type: IntegerDefault: 80
APP_HOST recommended
Type: StringDefault: localhost
WWWUSER
Type: Integer Default: 1000 The uid to map the docker application user to.
WWWGROUP
Type: Integer Default: 1000 The guid to map the docker application usergroup to.
DB_CONNECTION recommended
Type: sqlite | mysql | pgsql | sqlsrv Default:
mysqlDB_HOST recommended
Type: StringDefault: Depends on `DB_CONNECTION`
DB_PORT recommended
Type: IntegerDefault: Depends on `DB_CONNECTION`
DB_DATABASE recommended
Type: StringDefault: Depends on `DB_CONNECTION`
DB_USERNAME recommended
Type: StringDefault: Depends on `DB_CONNECTION`
DB_PASSWORD recommended
Type: StringDefault: Depends on `DB_CONNECTION`
DB_RESET_TO_SQL_DUMP_FILE
Type: StringThe filename of the database dump which can be used to reset the database.
ENV_FILE_PATH
dokcer