27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
# In all environments, the following files are loaded if they exist,
|
|
# the latter taking precedence over the former:
|
|
#
|
|
# * .env contains default values for the environment variables needed by the app
|
|
# * .env.local uncommitted file with local overrides
|
|
# * .env.$APP_ENV committed environment-specific defaults
|
|
# * .env.$APP_ENV.local uncommitted environment-specific overrides
|
|
#
|
|
# Real environment variables win over .env files.
|
|
#
|
|
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
|
|
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
|
|
|
|
###> symfony/framework-bundle ###
|
|
APP_ENV=prod
|
|
APP_SECRET=8bd3643031a08d0cd34e6fd3f680fb22
|
|
###< symfony/framework-bundle ###
|
|
|
|
###> symfony/doctrine-bundle ###
|
|
DATABASE_DEFAULT_URL=sqlite:///%kernel.project_dir%/./var/db-default.sqlite
|
|
DATABASE_OBSERVATIONS_URL=sqlite:///%kernel.project_dir%/../var/db.sqlite
|
|
###< doctrine/doctrine-bundle ###
|
|
|
|
###> records folder and disk
|
|
RECORDS_DISK=/dev/sda1
|
|
RECORDS_DIR=%kernel.project_dir%/../var/chunks
|
|
###< records folder and disk |