|
| 1 | +# In all environments, the following files are loaded if they exist, |
| 2 | +# the latter taking precedence over the former: |
| 3 | +# |
| 4 | +# * .env contains default values for the environment variables needed by the app |
| 5 | +# * .env.local uncommitted file with local overrides |
| 6 | +# * .env.$APP_ENV committed environment-specific defaults |
| 7 | +# * .env.$APP_ENV.local uncommitted environment-specific overrides |
| 8 | +# |
| 9 | +# Real environment variables win over .env files. |
| 10 | +# |
| 11 | +# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES. |
| 12 | +# https://symfony.com/doc/current/configuration/secrets.html |
| 13 | +# |
| 14 | +# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2). |
| 15 | +# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration |
| 16 | + |
| 17 | +###> symfony/framework-bundle ### |
| 18 | +APP_ENV=dev |
| 19 | +APP_SECRET=5d06ec43bb4fba3510e81575422626eb |
| 20 | +###< symfony/framework-bundle ### |
| 21 | + |
| 22 | +###> symfony/messenger ### |
| 23 | +# Choose one of the transports below |
| 24 | +# MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages |
| 25 | +# MESSENGER_TRANSPORT_DSN=redis://localhost:6379/messages |
| 26 | +MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0 |
| 27 | +###< symfony/messenger ### |
| 28 | + |
| 29 | +###> doctrine/doctrine-bundle ### |
| 30 | +# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url |
| 31 | +# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml |
| 32 | +# |
| 33 | +DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db" |
| 34 | +# DATABASE_URL="mysql://app:!ChangeMe!@database:3306/app?serverVersion=8.0.32&charset=utf8mb4" |
| 35 | +# DATABASE_URL="mysql://app:!ChangeMe!@database:3306/app?serverVersion=10.11.2-MariaDB&charset=utf8mb4" |
| 36 | +#DATABASE_URL="postgresql://app:!ChangeMe!@database:5432/app?serverVersion=15&charset=utf8" |
| 37 | +###< doctrine/doctrine-bundle ### |
0 commit comments