-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
31 lines (31 loc) · 896 Bytes
/
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
{
"name": "TrueNTH USA Portal",
"description": "Movember TrueNTH USA Shared Services",
"keywords": ["CIRG","fhir"],
"website": "https://github.com/uwcirg/truenth-portal",
"repository": "https://github.com/uwcirg/truenth-portal",
"logo": "https://github.com/uwcirg/truenth-portal/raw/develop/portal/static/img/logo.png",
"success_url": "/about",
"env": {
"SERVER_NAME": {
"description": "Fully qualified domain name of system, excluding protocol (HTTP/S). See App Name",
"value": "HEROKU_APP_NAME.herokuapp.com"
},
"PERSISTENCE_DIR": {
"description": "Site-specific configuration directory, defaults to gil",
"value": "gil"
}
},
"addons": [
"heroku-redis",
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
],
"scripts": {
"postdeploy": "FLASK_APP=manage.py flask sync"
}
}