forked from blackboard/BBDN-SignUp-List
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
33 lines (33 loc) · 1.19 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
{
"name": "Sign Up List",
"description": "A MEAN port of the Sign Up List tool originally written by Malcolm Murray and Stephen Vickers.",
"keywords": ["node", "express", "MEAN", "mongodb", "angular" ],
"website": "https://github.com/moneil/BBDN-SignUp-List",
"repository": "https://github.com/moneil/BBDN-SignUp-List",
"env": {
"LTI_KEY": {
"description":"add your LTI Key - this is used by your consumer to access this application",
"required": true
},
"LTI_SECRET": {
"description":"add your LTI Secret - this is used by your consumer to access this application",
"required": true
},
"APP_OAUTH_KEY": {
"description": "Paste the OAUTH KEY provided when you registered your Application",
"required": true
},
"APP_OAUTH_SECRET": {
"description": "Paste the OAUTH SECRET provided when you registered your Application",
"required": true
},
"MONGO_URI": {
"description": "Enter the target URI for your MongoDB. E.g.: mongo://<dbuser>:<dbpassword>@<mongodb_url>",
"required": true
},
"DEBUG_MODE": {
"description": "Enter 'yes' to turn on debug mode.",
"required": false
}
}
}