-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.dist
More file actions
40 lines (36 loc) · 1.04 KB
/
.env.dist
File metadata and controls
40 lines (36 loc) · 1.04 KB
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
###> docker-settings ###
# Run docker build under a current user
UID=1000
SERVER_HTTP_PORT=8090
DATABASE_EXTERNAL_PORT=5432
###< docker-settings ###
###> symfony/framework-bundle ###
APP_ENV=dev
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)$'
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
DATABASE_HOST=db
POSTGRES_DB=dev
POSTGRES_USER=dev
POSTGRES_PASSWORD=dev
DATABASE_URL=pgsql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DATABASE_HOST}:5432/${POSTGRES_DB}
#DB_VERSION=9.6
###< doctrine/doctrine-bundle ###
###> xdebug ###
#XDEBUG_REMOTE_HOST=localhost
#XDEBUG_REMOTE_ENABLE=1
#XDEBUG_REMOTE_AUTOSTART=1
#XDEBUG_REMOTE_CONNECT_BACK=1
#XDEBUG_IDEKEY=PHPSTORM
#XDEBUG_REMOTE_PORT=9000
#XDEBUG_PROFILER_ENABLE=0
#XDEBUG_PROFILER_ENABLE_TRIGGER=1
#PHP_IDE_CONFIG=serverName=caesar-keystore
###< xdebug ###
###< caesar-server ###
CAESAR_SERVER_HOST=http://localhost
CAESAR_SERVER_RPC_URL=http://localhost/json-rpc
CAESAR_SERVER_RPC_SECRET=
###> caesar-server ###