17 lines
638 B
Plaintext
17 lines
638 B
Plaintext
###> symfony/framework-bundle ###
|
|
APP_ENV=prod
|
|
APP_SECRET={some random chars, maybe use a random generator}
|
|
DEFAULT_LOCALE=en
|
|
TZ={Timezone, ex : Europe/Paris}
|
|
###< symfony/framework-bundle ###
|
|
|
|
###> symfony/mailer ###
|
|
MAILER_DSN=smtp://{mail}:{password}@{host}:{port}
|
|
### ex with docker maildev : MAILER_DSN=smtp://localhost:25
|
|
MAILER_SENDER={your_mail}
|
|
###< symfony/mailer ###
|
|
|
|
###> doctrine/doctrine-bundle ###
|
|
DATABASE_URL="mysql://{user}:{password}@{host}/{database}?charset=utf8"
|
|
### ex with docker mariadb : DATABASE_URL="mysql://root:password@127.0.0.1:3306/vision?sslmode=disable&charset=utf8mb4"
|
|
###< doctrine/doctrine-bundle ### |