-
Notifications
You must be signed in to change notification settings - Fork 279
/
app.json
93 lines (93 loc) · 2.63 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "WordPress on Heroku",
"description": "A template for installing and running WordPress on Heroku",
"keywords": [ "PHP", "WordPress", "Blog", "CMS" ],
"website": "https://github.com/xyu/heroku-wp",
"repository": "https://github.com/xyu/heroku-wp",
"logo": "https://s.w.org/style/images/about/WordPress-logotype-wmark.png",
"success_url": "/wp-admin/install.php",
"env": {
"NEW_RELIC_APP_NAME": {
"description": "The application name in New Relic for this app",
"value": "Heroku WP",
"required": true
},
"WP_DB_SSL": {
"description": "To connect to MySQL over SSL set this to 'ON'",
"value": "ON",
"required": false
},
"WP_DEBUG": {
"description": "Set this to 'TRUE' to turn on debug logging",
"value": "FALSE",
"required": false
},
"DISABLE_WP_CRON": {
"description": "Set this to 'TRUE' to disable the default WP cron runner",
"value": "FALSE",
"required": false
},
"WP_AUTH_KEY": {
"description": "One of the salts used to secure WordPress",
"generator": "secret"
},
"WP_SECURE_AUTH_KEY": {
"description": "One of the salts used to secure WordPress",
"generator": "secret"
},
"WP_LOGGED_IN_KEY": {
"description": "One of the salts used to secure WordPress",
"generator": "secret"
},
"WP_NONCE_KEY": {
"description": "One of the salts used to secure WordPress",
"generator": "secret"
},
"WP_AUTH_SALT": {
"description": "One of the salts used to secure WordPress",
"generator": "secret"
},
"WP_SECURE_AUTH_SALT": {
"description": "One of the salts used to secure WordPress",
"generator": "secret"
},
"WP_LOGGED_IN_SALT": {
"description": "One of the salts used to secure WordPress",
"generator": "secret"
},
"WP_NONCE_SALT": {
"description": "One of the salts used to secure WordPress",
"generator": "secret"
}
},
"environments": {
"test": {
"env": {
"NEW_RELIC_APP_NAME": "Heroku WP Test",
"WP_DB_SSL": "ON",
"WP_DEBUG": "TRUE",
"WP_AUTH_KEY": "herokuwp",
"WP_SECURE_AUTH_KEY": "herokuwp",
"WP_LOGGED_IN_KEY": "herokuwp",
"WP_NONCE_KEY": "herokuwp",
"WP_AUTH_SALT": "herokuwp",
"WP_SECURE_AUTH_SALT": "herokuwp",
"WP_LOGGED_IN_SALT": "herokuwp",
"WP_NONCE_SALT": "herokuwp"
}
}
},
"addons": [
{
"plan": "heroku-redis:hobby-dev"
},
{
"plan": "jawsdb-maria:kitefin",
"as": "WP_DB"
},
{
"plan": "newrelic:wayne"
}
],
"stack": "heroku-18"
}