-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.orig
More file actions
36 lines (26 loc) · 697 Bytes
/
Copy path.env.orig
File metadata and controls
36 lines (26 loc) · 697 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
COMPOSE_PROJECT_NAME=skeleton
# "docker-compose.yaml:docker-compose.prod.yaml" for production
# "docker-compose.yaml:docker-compose.stage.yaml" for stage
COMPOSE_FILE=
DOCKER_UID=1000
# "host.docker.internal" for mac
DOCKER_ADDRESS=172.17.0.1
# "dev" or "prod"
APP_ENV=dev
APP_DEBUG=1
APP_SECRET=
#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)$'
# "develop" or "production"
MARKUP_ENV=develop
MARKUP_PORT=4000
# 0.0.0.0 for external access
NGINX_HOST=127.0.0.1
NGINX_PORT=80
DATABASE_HOST=db
DATABASE_USER=
DATABASE_PASSWORD=
DATABASE_NAME=
MAILHOG_HTTP_HOST=127.0.0.1
MAILHOG_HTTP_PORT=8025
MAILER_DSN=smtp://mailhog:1025