forked from cachethq/cachet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
34 lines (34 loc) · 1.08 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
{
"name": "Cachet",
"description": "An open source status page system.",
"keywords": [
"cachet",
"laravel",
"status",
"page"
],
"website": "https://cachethq.io",
"logo": "https://raw.githubusercontent.com/cachethq/assets/79336a33c24b28c470a89742671e0e291813d004/images/icon/Cachet-Icon.png",
"success_url": "/setup",
"repository": "https://github.com/cachethq/Cachet",
"addons": [
"heroku-postgresql"
],
"env": {
"ENV": {
"value": "heroku",
"description": "Warning: Do not modify this value on Heroku deployments."
},
"BUILDPACK_URL": {
"value": "https://github.com/heroku/heroku-buildpack-php",
"description": "Warning: Do not modify this value on Heroku deployments."
},
"CACHE_DRIVER": {
"value": "apc",
"description": "Warning: Do not modify this value on Heroku deployments."
}
},
"scripts": {
"postdeploy": "php artisan migrate --env=heroku; php artisan key:generate;"
}
}