-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
58 lines (52 loc) · 1.78 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# shared key for validating JWT bearer tokens
JWT_SHARED_SECRET=apan japan
################################################################
#
# Optional MongoDB connection (default is in memory)
#
# Contact details and verification process
#
################################################################
MONGODB_URI=mongodb://127.0.0.1:27017
#MONGODB_DB=aboutme
#MONGODB_COLLECTION=persons
################################################################
#
# Optional Helsingborg Stad Datatorget Person API
#
# Contact details and verification process
#
################################################################
HBG_DATATORGET_URI=https://...
HBG_DATATORGET_APIKEY=...
################################################################
#
# Phone number parsing
# Region should come from 2 letter ISO 3166-1
#
################################################################
#PHONENUMBER_REGION=SE
################################################################
#
# gdi-cases-server integration
# https://github.com/helsingborg-stad/gdi-cases-server
#
################################################################
GDICASES_URI=https://cases.gdi.thebestcityintheworld.io/
GDICASES_APIKEY=super-secret-value
################################################################
#
# Fake cases generation fallback
#
################################################################
GDICASES_FALLBACK_TO_SAMPLES=some-truthy-string
################################################################
#
# !!!CAUTION!!!
# Keys below should only be used during local development
#
################################################################
# Turn on some development only features
NODE_ENV=development
# In absence of JWT Bearer token, a fallback user can be faked
DEVELOPMENT_FALLBACK_JWT_USER={"id": "fake-user-123"}