-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.env.sample
29 lines (22 loc) · 1010 Bytes
/
.env.sample
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
# database connection values
DB_HOST='localhost'
DB_PORT='5432'
DB_NAME='compass'
DB_PASSWORD='123456'
DB_USER='compass_user'
# a secret used for JWT generation
JWT_SECRET='mein_schatz'
# optional Push Service configuration
GOOGLE_APPLICATION_CREDENTIALS='./google-services.json'
# have node use a common time zone
TZ = 'Europe/Amsterdam'
# encryption keys
COMPASS_PUBLIC_KEY='-----BEGIN PUBLIC KEY-----\nMII ... \n ... \n-----END PUBLIC KEY-----'
COMPASS_PRIVATE_KEY='-----BEGIN PRIVATE KEY-----\nMII ... \n ... =\n-----END PRIVATE KEY-----'
COMPASS_RECIPIENT_CERTIFICATE='-----BEGIN CERTIFICATE-----\nMII .... \n ... \n-----END CERTIFICATE-----'
# Uncomment the following the line to disable SSL for dev
# DB_USE_SSL='false'
# Uncomment the following line and enter the ssl certificate for your database
# if you don't use the ibm cloud (openshift) for deployment
# Attention: self signed certificates won't work!
# DB_SSL_CA='-----BEGIN CERTIFICATE-----\nMII .... \n ... \n-----END CERTIFICATE-----'