-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
58 lines (58 loc) · 1.55 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": "wordpress-heroku-composer",
"description": "Wordpress boilerplate that is deployable to Heroku cloud platform using Composer packages.",
"repository": "https://github.com/tarmo888/wordpress-heroku-composer",
"keywords": ["wordpress", "heroku", "composer", "php", "mysql", "apache2"],
"addons": ["jawsdb-maria:kitefin", "heroku-redis:hobby-dev", "sendgrid:starter", "papertrail:choklad", "scheduler:standard"],
"env": {
"BUILDPACK_URL": "heroku/php",
"AWS_ACCESS_KEY_ID": {
"description": "AWS Access Key",
"value": ""
},
"AWS_SECRET_ACCESS_KEY": {
"description": "Secret Access Key",
"value": ""
},
"DISABLE_WP_CRON": {
"description": "Disable WP Cron to call it from Scheduler instead?",
"value": "0"
},
"FORCE_SSL": {
"description": "Force login and admin to HTTPS?",
"value": "0"
},
"AUTH_KEY": {
"description": "Hash for AUTH_KEY",
"generator": "secret"
},
"SECURE_AUTH_KEY": {
"description": "Hash for SECURE_AUTH_KEY",
"generator": "secret"
},
"LOGGED_IN_KEY": {
"description": "Hash for LOGGED_IN_KEY",
"generator": "secret"
},
"NONCE_KEY": {
"description": "Hash for NONCE_KEY",
"generator": "secret"
},
"AUTH_SALT": {
"description": "Hash for AUTH_SALT",
"generator": "secret"
},
"SECURE_AUTH_SALT": {
"description": "Hash for SECURE_AUTH_SALT",
"generator": "secret"
},
"LOGGED_IN_SALT": {
"description": "Hash for LOGGED_IN_SALT",
"generator": "secret"
},
"NONCE_SALT": {
"description": "Hash for NONCE_SALT",
"generator": "secret"
}
}
}