This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
57 lines (56 loc) · 1.68 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
{
"name": "NX RG Portal",
"description": "Next portal web system for Keio University RG Labo.",
"repository": "https://github.com/sfc-rg/nx-portal",
"keywords": ["python", "django", "static"],
"success_url": "/",
"image": "heroku/python",
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
}
],
"addons": ["heroku-postgresql:hobby-dev"],
"scripts": {
"postdeploy": "python manage.py migrate"
},
"env": {
"APPLICATION_URL": {
"description": "Application URL is web system host name.",
"value": "{YOUR APP NAME}.herokuapp.com",
"required": true
},
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"APP_NAME": {
"description": "Application name that will be displayed on navigation bar.",
"value": "Labo Portal",
"required": true
},
"PORTAL_RUNNING_MODE": {
"description": "Settings for defining a running mode.",
"value": "production",
"required": true
},
"SEASONABLE_EMOJI": {
"description": "Add emoji on navigation bar.",
"value": "🎄",
"required": false
},
"SLACK_INCOMING_TOKEN": {
"description": "Enabling slack notification.",
"value": "",
"required": false
},
"DEBUG_LOG_MODE": {
"description": "Show debug error log.",
"value": "TRUE",
"required": true
}
}
}