-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
66 lines (66 loc) · 2.48 KB
/
app.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
{
"name": "Parse HIPAA Dashboard",
"description": "An example Parse server dashboard",
"repository": "https://github.com/netreconlab/parse-hipaa-dashboard",
"logo": "https://avatars0.githubusercontent.com/u/1294580?v=3&s=200",
"keywords": ["node", "express", "parse", "carekit", "hipaa", "dashboard"],
"env": {
"PARSE_DASHBOARD_APP_ID": {
"description": "The unique identifier for your app.",
"required": true
},
"PARSE_DASHBOARD_PRIMARY_KEY": {
"description": "The key that overrides all permissions.",
"required": true
},
"PARSE_DASHBOARD_SERVER_URL": {
"description": "URL to connect to your parse-hipaa or parse-server instance",
"required": true
},
"PARSE_DASHBOARD_GRAPHQL_SERVER_URL": {
"description": "URL to connect to your parse-hipaa or parse-server instance (your server's URL/graphql)",
"required": false
},
"PARSE_DASHBOARD_APP_NAME": {
"description": "The name of your app.",
"required": true
},
"PARSE_DASHBOARD_USERNAME": {
"description": "Specify the username to connect to the dashboard.",
"required": true
},
"PARSE_DASHBOARD_USER_PASSWORD": {
"description": "Specify the user password to connect with. This should be a hash of the password if PARSE_DASHBOARD_USER_PASSWORD_ENCRYPTED=true. Can use a hasher for generating, e.g. https://bcrypt-generator.com.",
"required": true
},
"PARSE_DASHBOARD_USER_PASSWORD_ENCRYPTED": {
"description": "Specify if the user parseword should be encrypted (true) or in plaintext (false).",
"value": "true"
},
"PARSE_DASHBOARD_COOKIE_SESSION_SECRET": {
"description": "The constant cookie session for dashboard.",
"required": false
},
"PARSE_DASHBOARD_CONFIG": {
"description": "The config file for dashboard.",
"required": false
},
"PARSE_DASHBOARD_ALLOW_INSECURE_HTTP": {
"description": "Should allow insecure http.",
"value": "0"
},
"PARSE_DASHBOARD_TRUST_PROXY": {
"description": "Should trust proxy in docker.",
"required": false
},
"PORT": {
"description": "Port for parse-hipaa-dashboard, default is 4040.",
"value": "4040"
},
"MOUNT_PATH": {
"description": "The mount path should be the same as the docker name.",
"value": "/"
}
},
"stack": "container"
}