-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
58 lines (58 loc) · 1.19 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
{
"name": "starter-kit-wordpress",
"scripts": {
"postdeploy": "scripts/install.sh"
},
"env": {
"DATABASE_URL": {
"description": "Database connection url",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Heroku app name, supplied by Heroku",
"required": false
},
"AUTH_KEY": {
"description": "WP config",
"generator": "secret"
},
"SECURE_AUTH_KEY": {
"description": "WP config",
"generator": "secret"
},
"LOGGED_IN_KEY": {
"description": "WP config",
"generator": "secret"
},
"NONCE_KEY": {
"description": "WP config",
"generator": "secret"
},
"AUTH_SALT": {
"description": "WP config",
"generator": "secret"
},
"SECURE_AUTH_SALT": {
"description": "WP config",
"generator": "secret"
},
"LOGGED_IN_SALT": {
"description": "WP config",
"generator": "secret"
},
"NONCE_SALT": {
"description": "WP config",
"generator": "secret"
}
},
"addons": [
{
"plan": "jawsdb-maria:kitefin"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-php"
}
]
}