-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
31 lines (31 loc) · 956 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": "Red Wind",
"description": "IndieWeb-ready blog software written in Python and running on Flask.",
"keywords": ["indieweb", "social", "blog"],
"website": "https://indiewebcamp.com/Red_Wind",
"repository": "https://github.com/kylewm/redwind",
"scripts": {
"postdeploy": [
"cp config.py.heroku config.py",
"python install.py"
]
},
"env": {
"SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"URL": {
"descrption": "The URL where the app will be deployed",
"value": "http://appname.herokuapp.com"
},
"TIMEZONE": {
"description": "The user's location timezone",
"value": "America/Los_Angeles"
}
},
"addons": [
"redistogo:nano",
"heroku-postgresql:hobby-dev"
]
}