23 lines
1.1 KiB
Bash
23 lines
1.1 KiB
Bash
# This file is a "template" of which env vars need to be defined for your application
|
|
# Copy this file to .env file for development, create environment variables when deploying to production
|
|
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
|
|
|
|
###> symfony/framework-bundle ###
|
|
APP_ENV=dev
|
|
APP_SECRET=494a9d1f8cc383f16075f4d5e54ae1a2
|
|
#TRUSTED_PROXIES=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
|
|
#TRUSTED_HOSTS='^(localhost|example\.com)$'
|
|
###< symfony/framework-bundle ###
|
|
|
|
###> doctrine/doctrine-bundle ###
|
|
# Format described at https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
|
|
# IMPORTANT: You MUST configure your server version, either here or in config/packages/doctrine.yaml
|
|
#
|
|
DATABASE_URL="sqlite:///%kernel.project_dir%/var/app.db"
|
|
# DATABASE_URL="mysql://db_user:db_password@127.0.0.1:3306/db_name?serverVersion=5.7"
|
|
###< doctrine/doctrine-bundle ###
|
|
|
|
###> symfony/messenger ###
|
|
APP_EVENT_QUEUE_DSN="doctrine://default"
|
|
###< symfony/messenger ###
|