-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathenv.json
110 lines (110 loc) · 2.63 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"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"
},
"AUTH_CONFIGURATION_URI": {
"type": "string",
"default": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_yV7wvD4xD/.well-known/openid-configuration"
},
"AUTH_JWKS_URL": {
"type": "string",
"default": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_yV7wvD4xD/.well-known/jwks.json"
},
"HOST_SERVER": {
"type": "string",
"default": "http://localhost:3000"
},
"AUTH_CODE_FLOW_CLIENT_ID": {
"type": "string",
"default": "5et51l3beeahp016i4qe6hurtr"
},
"AUTH_CODE_FLOW_URL": {
"type": "string",
"default": "https://bwell-dev.auth.us-east-1.amazoncognito.com"
},
"ENVIRONMENT": {
"type": "string",
"default": "local"
},
"ENABLE_SWAGGER_DOC": {
"type": "string",
"default": "0"
},
"RENDER_HTML": {
"type": "string",
"default": "true"
},
"EXTERNAL_AUTH_JWKS_URLS": {
"type": "string",
"default": "https://cognito-idp.us-east-1.amazonaws.com/us-east-1_e4iVm1J4X/.well-known/jwks.json"
},
"ENABLE_GRAPHQL": {
"type": "string",
"default": "1"
},
"AUTH_CUSTOM_GROUP": {
"type": "string",
"default": "congito:groups"
},
"AUTH_CUSTOM_SCOPE": {
"type": "string",
"default": "custom:scope"
},
"CREATE_INDEX_ON_COLLECTION_CREATION": {
"type": "string",
"default": "1"
},
"SET_INDEX_HINTS": {
"type": "string",
"default": "0"
},
"GRIDFS_RESOURCES": {
"type": "string",
"default": ""
},
"REQUIRED_AUDIT_EVENT_FILTERS": {
"type": "string",
"default": ""
}
}