forked from anttiviljami/wordpress-heroku-docker-project
-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
69 lines (69 loc) · 1.74 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
{
"name": "WordPress on Heroku",
"description": "Holy Grail WordPress project template for Heroku",
"repository": "https://github.com/mitramejia/wordpress-heroku-docker-project",
"keywords": ["wordpress", "aws", "s3", "mariadb", "mysql", "php", "php7"],
"addons": [
"heroku-redis",
"papertrail",
"newrelic"
],
"env": {
"WP_ENV": {
"description": "Is this app for development, qa or production?",
"value": "development"
},
"DATABASE_URL": {
"description": "The URL to a MySQL database",
"value": ""
},
"S3_UPLOADS_BUCKET": {
"description": "Name of the S3 bucket used for uploads",
"value": ""
},
"S3_UPLOADS_KEY": {
"description": "S3 Bucket access key",
"value": ""
},
"S3_UPLOADS_SECRET": {
"description": "S3 Bucket access secret",
"value": ""
},
"S3_UPLOADS_REGION": {
"description": "AWS region used for the bucket",
"value": "eu-central-1"
},
"AUTH_KEY": {
"description": "wp-config secret",
"generator": "secret"
},
"SECURE_AUTH_KEY": {
"description": "wp-config secret",
"generator": "secret"
},
"LOGGED_IN_KEY": {
"description": "wp-config secret",
"generator": "secret"
},
"NONCE_KEY": {
"description": "wp-config secret",
"generator": "secret"
},
"AUTH_SALT": {
"description": "wp-config secret",
"generator": "secret"
},
"SECURE_AUTH_SALT": {
"description": "wp-config secret",
"generator": "secret"
},
"LOGGED_IN_SALT": {
"description": "wp-config secret",
"generator": "secret"
},
"NONCE_SALT": {
"description": "wp-config secret",
"generator": "secret"
}
}
}