-
Notifications
You must be signed in to change notification settings - Fork 39
/
app.json
51 lines (50 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
{
"name": "CMS Buildpacks by TechnoMile",
"description": "Deploy your favorite CMS on Heroku using our WordPress buildpack.",
"repository": "https://github.com/technomile/Heroku-WordPress-PostgreSQL",
"logo": "http://technomile.github.io/img/cms_buildpack_github.png",
"keywords": ["wordpress", "heroku", "php", "postgresql", "apache", "apache2", "nginx"],
"addons": ["heroku-postgresql:hobby-dev","newrelic:wayne","sendgrid:starter"],
"env": {
"AWS_ACCESS_KEY_ID": {
"description": "Your AWS Access key to grant this application access to a S3 bucket.",
"value":"AWS Access Key"
},
"AWS_SECRET_ACCESS_KEY": {
"description": "The secret part of your AWS access key.",
"value": "Secret Access Key"
},
"AUTH_KEY": {
"description": "Salt for your app",
"generator": "secret"
},
"SECURE_AUTH_KEY": {
"description": "Salt for your app",
"generator": "secret"
},
"LOGGED_IN_KEY": {
"description": "Salt for your app",
"generator": "secret"
},
"NONCE_KEY": {
"description": "Salt for your app",
"generator": "secret"
},
"AUTH_SALT": {
"description": "Salt for your app",
"generator": "secret"
},
"SECURE_AUTH_SALT": {
"description": "Salt for your app",
"generator": "secret"
},
"LOGGED_IN_SALT": {
"description": "Salt for your app",
"generator": "secret"
},
"NONCE_SALT": {
"description": "Salt for your app",
"generator": "secret"
}
}
}