-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
108 lines (108 loc) · 3.1 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "WordPress Boilerplate",
"description": "Custom WordPress Project Boilerplate",
"repository": "https://github.com/feryardiant/wpdev",
"logo": "https://s.w.org/style/images/about/WordPress-logotype-wmark.png",
"keywords": ["php", "wordpress", "boilerplate", "composer", "bedrock"],
"stack": "heroku-18",
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
},
"env": {
"HEROKU_APP_NAME": {
"description": "Only for automated deploys, please don't enter anything!",
"required": true
},
"MULTISITE": {
"description": "Whether you want to enable multisite install.",
"value": "false",
"required": false
},
"WP_ENV": {
"description": "WordPress environment you desire for your Heroku instance, e.g: production, staging, etc",
"value": "production",
"required": false
},
"WP_CACHE": {
"description": "Whether you want to enable caching on your site.",
"value": "false",
"required": false
},
"WP_DEFAULT_THEME": {
"description": "Default theme that enabled on the first time you install!",
"required": false,
"value": "blank-child"
},
"WP_DEBUG": {
"description": "Whether you want to turn debuging on or off.",
"value": "false",
"required": false
},
"WP_DEBUG_DISPLAY": {
"description": "Whether you want to display debuging on or off.",
"value": "false",
"required": false
},
"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"
}
},
"environments": {
"review": {
"env": {
"SCRIPT_DEBUG": "true",
"WP_CACHE": "false",
"WP_DEBUG": "true",
"WP_DEBUG_DISPLAY": "true",
"WP_DEBUG_LOG": "true",
"WP_ENV": "testing",
"WP_LOCAL_DEV": "true"
}
}
},
"scripts": {
"postdeploy": "composer wp:post-deploy"
},
"addons": [
"cleardb:ignite",
"heroku-redis:hobby-dev",
"scheduler:standard"
],
"buildpacks": [
{ "url": "heroku/php" },
{ "url": "heroku/nodejs" },
{ "url": "feryardiant/wordpress" }
]
}