-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathapp.json
35 lines (35 loc) · 905 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
32
33
34
35
{
"name": "projecttier.org",
"description": "Wagtail website for Project TIER",
"website": "https://www.projecttier.org/",
"repository": "https://github.com/ProjectTIER/projecttier.org",
"logo": "https://avatars0.githubusercontent.com/u/17191910",
"keywords": ["wagtail", "django", "education", "research"],
"env": {
"DATABASE_URL": {
"required": true
},
"DJANGO_SETTINGS_MODULE": {
"required": true
},
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"BUCKETEER_AWS_ACCESS_KEY_ID": {
"required": true
},
"BUCKETEER_AWS_SECRET_ACCESS_KEY": {
"required": true
},
"BUCKETEER_BUCKET_NAME": {
"required": true
}
},
"scripts": {
"postdeploy": "django-admin.py migrate"
},
"addons": [
"heroku-postgresql:hobby-dev"
]
}