-
Notifications
You must be signed in to change notification settings - Fork 316
/
app.json
86 lines (86 loc) · 1.93 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
{
"name": "WordPress",
"description": "WordPress is open source software you can use to create a beautiful website, blog, or app.",
"keywords": [
"wordpress",
"cms",
"bedrock",
"boilerplate",
"composer"
],
"website": "https://wordpress.org/",
"repository": "https://github.com/PhilippHeuer/wordpress-heroku",
"success_url": "/wp/wp-admin",
"scripts": {
"postdeploy": [
"bin/scripts/postdeploy.sh"
]
},
"stack": "heroku-18",
"env": {
"AUTH_KEY": {
"description": "A secret key to increase security of stored information.",
"generator": "secret"
},
"SECURE_AUTH_KEY": {
"description": "A secret key to increase security of stored information.",
"generator": "secret"
},
"LOGGED_IN_KEY": {
"description": "A secret key to increase security of stored information.",
"generator": "secret"
},
"NONCE_KEY": {
"description": "A secret key to increase security of stored information.",
"generator": "secret"
},
"AUTH_SALT": {
"description": "A secret key to increase security of stored information.",
"generator": "secret"
},
"SECURE_AUTH_SALT": {
"description": "A secret key to increase security of stored information.",
"generator": "secret"
},
"LOGGED_IN_SALT": {
"description": "A secret key to increase security of stored information.",
"generator": "secret"
},
"NONCE_SALT": {
"description": "A secret key to increase security of stored information.",
"generator": "secret"
},
"HEROKU_APP_NAME": {
"required": false,
"description": "Only for automated deploys, please don't enter anything!"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "jawsdb-maria:kitefin"
},
{
"plan": "sendgrid:starter"
},
{
"plan": "scheduler:standard"
},
{
"plan": "heroku-redis:hobby-dev"
},
{
"plan": "papertrail:choklad"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-php"
}
]
}