-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
executable file
·39 lines (32 loc) · 1.57 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This file defines all environment variables that the application needs.
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE.
# Use ".env.local" for local overrides during development.
# Use real environment variables when deploying to production.
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
CONTAINER_REGISTRY_BASE=test-technique
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=!ChangeMe!
TRUSTED_PROXIES=10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
TRUSTED_HOSTS=(.ngrok\.io|localhost)$
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
# Configure your db driver and server_version in config/packages/doctrine.yaml
DATABASE_URL=postgres://api:api@db/api
###< doctrine/doctrine-bundle ###
###> nelmio/cors-bundle ###
CORS_ALLOW_ORIGIN=^https?://(.*?\.)?localhost(:[0-9]+)?$
###< nelmio/cors-bundle ###
###> symfony/messenger ###
MESSENGER_TRANSPORT_DSN=enqueue://default?topic[name]=messages&queue[name]=messages&receiveTimeout=20000
MESSENGER_TRANSPORT_ERROR_DSN=enqueue://default?topic[name]=errors&queue[name]=errors&receiveTimeout=20000
###< symfony/messenger ###
MAILER_ROOT_URL=http://mailer.localhost
MAILER_CACHE=/srv/api/var/cache/mailer.cache
URL_LINK_MY_ACCOUNT=http://localhost/my-account
ENCRYPTER_SECRET=xxx
###> enqueue/enqueue-bundle ###
ENQUEUE_DSN=null://
###< enqueue/enqueue-bundle ###