-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathapp.json
48 lines (48 loc) · 1.81 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
{
"name": "DSKTOOL DEV v1.2.6 (07/05/2022)",
"description": "A Django/Python-based RESTful version of the Original York DSK tool for Heroku and Docker.",
"keywords": [
"Django",
"Blackboard",
"Learn",
"REST",
"DSKTOOL"
],
"stack": "heroku-22",
"website": "https://github.com/moneil/DSKTOOL-for-Heroku",
"repository": "https://github.com/moneil/DSKTOOL-for-Heroku",
"success_url": "/isup",
"env": {
"BLACKBOARD_LEARN_INSTANCE": {
"description": "The FQDN for your Blackboard Learn instance. E.g.: demo.blackboard.com. Do NOT include the protocol (http:// or https://)",
"required": true
},
"APPLICATION_KEY": {
"description": "Paste the APPLICATION KEY provided when you registered your Application in the Blackboard Developer Portal. (Contains hyphens)",
"required": true
},
"APPLICATION_SECRET": {
"description": "Paste the APPLICATION SECRET provided when you registered your Application. (Contains no hyphens)",
"required": true
},
"DJANGO_SECRET_KEY": {
"description": "Paste the DJANGO SECRET from this website: https://djskgen.herokuapp.com (remove the single quotes)",
"required": true
},
"DJANGO_ALLOWED_HOSTS": {
"description": "Leave this set as is or edit for your custom domain for successful deploy.",
"required": true,
"value": ".heroku.com .herokuapp.com"
},
"DJANGO_DEBUG": {
"description": "Leave this set as is for production deploy. May set to True in non-production environments.",
"required": true,
"value": "False"
},
"DISABLE_COLLECTSTATIC": {
"description": "Leave this set as is for successful deploy.",
"required": true,
"value": "1"
}
}
}