forked from ellefsen/wordpress-heroku-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
32 lines (32 loc) · 822 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": "WordPress Heroku PHP",
"description": "Template for deploying WordPress to Heroku",
"repository": "https://github.com/ellefsen/wordpress-heroku-php",
"success_url": "/",
"env": {
"BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-php",
"AWS_ACCESS_KEY_ID": {
"description": "The Amazon Access Key.",
"value": "123"
},
"AWS_SECRET_ACCESS_KEY": {
"description": "The Amazon Secret Access Key.",
"value": "123"
},
"DISABLE_WP_CRON": {
"description": "Disable WordPress internal cron-job.",
"value": "true"
},
"WP_CACHE": {
"description": "Enable caching via Memcachier and Batcache.",
"value": "true"
}
},
"addons": [
"cleardb",
"sendgrid",
"memcachier",
"papertrail",
"newrelic"
]
}