-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
53 lines (53 loc) · 1.66 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
{
"name": "BetterMemorySugarBot",
"description": "Now you will not forget about next infusion set or CGM sensor change! This app remembers for you!",
"repository": "https://github.com/Simon-the-Shark/BetterMemorySugarBot",
"keywords": [
"diabetes",
"CGM",
"nightscout"
],
"addons": [
"heroku-postgresql"
],
"env": {
"app_name": {
"description": "please type it again :) it has to be the same"
},
"SECRET_KEY": {
"description": "Secret password for your application"
},
"LANGUAGE_CODE": {
"description": "yours application and messages language. ('en' or 'pl') ",
"value": "en"
},
"heroku_token": {
"description": "your secret heroku API token."
},
"NIGHTSCOUT_LINK": {
"description": "http link to your nightscout website, where last change data will be downloaded from. (settable later)",
"required": false
},
"INFUSION_SET_ALERT_FREQUENCY": {
"description": "numbers of hours between your infusion set changes. (settable later)",
"required": false,
"value": "72"
},
"SENSOR_ALERT_FREQUENCY": {
"description": "numbers of hours between your CGM sensor changes. (settable later)",
"required": false,
"value": "144"
},
"ATRIGGER_KEY": {
"description": "yours API key from atrigger.com (settable later)",
"required": false
},
"ATRIGGER_SECRET": {
"description": "yours secret API password from atrigger.com (settable later)",
"required": false
}
},
"scripts": {
"postdeploy": "python manage.py migrate; python manage.py create_default_admin;python manage.py collectstatic --noinput"
}
}