-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
32 lines (32 loc) · 890 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
{
"name": "Silverback",
"description": "A Status and Incident Communication Tool",
"repository": "https://github.com/silverbackhq/silverback",
"website": "https://github.com/silverbackhq",
"logo": "https://silverbackhq.org/logo.png",
"keywords": ["silverback", "silverbackhq", "status-page", "incident-management", "chatops", "statuspage", "application-monitoring", "cachet"],
"success_url": "/",
"env": {
"APP_ENVIRONMENT": "heroku",
"APP_URL": "http://localhost",
"APP_DEBUG": "false",
"DB_CONNECTION": "sqlite",
"DB_HOST": "127.0.0.1",
"DB_PORT": "3306",
"DB_DATABASE": "silverback",
"DB_USERNAME": "root",
"DB_PASSWORD": "secret",
"ALLOWED_HOSTS": "*",
"APP_KEY": {
"description": "A secret key.",
"generator": "secret"
},
"DISABLE_COLLECTSTATIC": "0"
},
"addons": [{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}]
}