forked from nathanhfoster/llexicon-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
31 lines (31 loc) · 775 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": "llexicon",
"description": "A web app that builds your llexicon",
"repository": "",
"logo": "",
"keywords": ["django", "python"],
"scripts": {
"postdeploy": "python manage.py migrate && python manage.py autosuperuser && python manage.py generatehiitpage"
},
"env": {
"PROJECT_NAME": {
"description": "llexicon",
"value": "llexicon",
"required": true
},
"YOUR_WEBSITE": {
"description": "What is your website domain? Include the first period (.) and ignore 'www'",
"value": ".yourdomain.com",
"required": false
},
"SECRET_TOKEN": {
"description": "Django project secret token.",
"generator": "secret"
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
]
}