-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.example
36 lines (36 loc) · 1005 Bytes
/
.env.example
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
# if you want extra debug messages in the database set this to true
BITNAMI_DEBUG=false
# the password of the postgres (admin) user
POSTGRESQL_POSTGRES_PASSWORD=...
# separate user, those must match the DB_ entries
POSTGRESQL_DATABASE=coronavis
POSTGRESQL_USERNAME=coronavis
POSTGRESQL_PASSWORD=...
# if you use docker-compose for development, set DB_HOST=db and DB_PORT=5432, the rest must match the three lines above
DB_HOST=db
DB_PORT=5432
# must match POSTGRESQL_USERNAME
DB_USER=coronavis
# must match POSTGRESQL_PASSWORD
DB_PASS=...
# must match POSTGRESQL_DATABASE
DB_NAME=coronavis
# no need to change these two lines
VERSION=development
ENVIRONMENT=development
# can be left empty
SENTRY_DSN=
# any random value
APP_KEY=...
# any random value
APP_HASH_SALT=...
# any random value
API_KEY=...
# mail server settings
MAIL_SERVER=dbvis.inf.uni-konstanz.de
MAIL_PORT=465
MAIL_USE_TLS=false
MAIL_USE_SSL=true
MAIL_USERNAME=...
MAIL_PASSWORD=...