-
Notifications
You must be signed in to change notification settings - Fork 18
/
app.json
38 lines (38 loc) · 1.1 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
{
"name": "django-collaborative",
"description": "ProPublica's collaborative tip-gathering framework. Import and manage CSV, Google Sheets and Screendoor data with ease.",
"repository": "https://github.com/propublica/django-collaborative",
"logo": "https://media.glassdoor.com/sqll/420393/propublica-squarelogo-1496908234360.png",
"keywords": ["django", "collaborative", "admin"],
"addons": [
"heroku-postgresql:hobby-dev"
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"clock": {
"quantity": 1,
"size": "free"
}
},
"env": {
"COLLAB_ADMIN_USERNAME": {
"description": "Default admin account username.",
"required": true
},
"COLLAB_ADMIN_EMAIL": {
"description": "Default admin account email for recovery.",
"required": true
},
"COLLAB_ADMIN_PASSWORD": {
"description": "Default admin account password.",
"required": true
},
"DISABLE_COLLECTSTATIC": {
"description": "Don't run python manage.py collectstatic --noinput on deploy (don't edit this)",
"value": "1"
}
}
}