-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
33 lines (33 loc) · 967 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
{
"name": "WebhookDB",
"description": "Replicates Github's database via HTTP webhooks.",
"keywords": [
"databases",
"webhooks"
],
"website": "https://github.com/singingwolfboy/webhookdb",
"repository": "https://github.com/singingwolfboy/webhookdb",
"logo": "https://raw.githubusercontent.com/singingwolfboy/webhookdb/master/artwork/webhookdb-square.png",
"success_url": "/",
"scripts": {
"postdeploy": "python manage.py dbcreate"
},
"env": {
"FLASK_SECRET_KEY": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"GITHUB_CLIENT_ID": {
"description": "The OAuth client ID for your application, assigned by Github"
},
"GITHUB_CLIENT_SECRET": {
"description": "The OAuth client secret for your application, assigned by Github"
}
},
"addons": [
"heroku-postgresql",
"bugsnag",
"rediscloud",
"rabbitmq-bigwig"
]
}