-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
40 lines (40 loc) · 987 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
34
35
36
37
38
39
40
{
"name": "My wordpress site",
"description": "Template for deploying WordPress with nginx to Heroku",
"repository": "",
"success_url": "/",
"env": {
"BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-php",
"WP_ENV": {
"description": "Options: prod -> production | dev -> developer",
"value": "prod"
},
"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"
},
"WP_DEBUG": {
"description": "Enable mode debug",
"value": "true"
}
},
"addons": [
"cleardb",
"sendgrid",
"memcachier",
"papertrail",
"newrelic"
]
}