-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
46 lines (38 loc) · 951 Bytes
/
.env
File metadata and controls
46 lines (38 loc) · 951 Bytes
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
40
41
42
43
44
45
46
###> Docker Compose ###
COMPOSE_PROJECT_NAME=v3
NGINX_PORT=8080
DB_PORT=5432
REDIS_PORT=6379
MAILPIT_UI_PORT=8025
MAILPIT_SMTP_PORT=1025
###< Docker Compose ###
###> Database ###
DB_NAME=v3
DB_USER=symfony
DB_PASSWORD=symfony
DB_HOST=postgres
DB_PORT=5432
###< Database ###
###> Redis ###
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=
REDIS_URL=redis://${REDIS_HOST}:${REDIS_PORT}
###< Redis ###
###> symfony/framework-bundle ###
APP_ENV=dev
APP_DEBUG=
APP_SECRET=
###< symfony/framework-bundle ###
###> symfony/routing ###
DEFAULT_URI=https://v3.local
###< symfony/routing ###
###> doctrine/doctrine-bundle ###
DATABASE_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}?serverVersion=17&charset=utf8
###< doctrine/doctrine-bundle ###
###> symfony/messenger ###
MESSENGER_TRANSPORT_DSN=${REDIS_URL}/messages
###< symfony/messenger ###
###> symfony/mailer ###
MAILER_DSN=smtp://mailpit:1025
###< symfony/mailer ###