-
Notifications
You must be signed in to change notification settings - Fork 100
/
env.json
49 lines (49 loc) · 874 Bytes
/
env.json
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
{
"MONGO_HOSTNAME": {
"type": "string",
"default": "localhost",
"required": true
},
"MONGO_DB_NAME": {
"type": "string",
"test": "fhir-test",
"development": "fhir-development",
"default": "fhir",
"required": true
},
"LOGGING_LEVEL": {
"type": "string",
"default": "debug"
},
"SERVER_PORT": {
"type": "number",
"default": 3000
},
"SSL_KEY": {
"type": "string"
},
"SSL_CERT": {
"type": "string"
},
"RESOURCE_SERVER": {
"type": "string",
"default": "http://localhost:3000"
},
"AUTH_SERVER_URI": {
"type": "string",
"default": "http://localhost:3000"
},
"WHITELIST": {
"type": "string",
"default": "http://localhost"
},
"CLIENT_ID": {
"type": "string"
},
"CLIENT_SECRET": {
"type": "string"
},
"INTROSPECTION_URL": {
"type": "string"
}
}