-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
79 lines (79 loc) · 2.25 KB
/
app.json
File metadata and controls
79 lines (79 loc) · 2.25 KB
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
{
"name": "WordPress on Heroku",
"description": "WordPress project template for Heroku",
"keywords": [
"wordpress",
"aws",
"mysql",
"php"
],
"website": "https://github.com/rory-ferguson/wordpress-docker-heroku",
"repository": "https://github.com/rory-ferguson/wordpress-docker-heroku",
"env": {
"WP_ENVIRONMENT": {
"description": "Is this app for development or production?",
"value": "development",
"required": false
},
"WORDPRESS_DB_HOST": {
"description": "The URL to a MySQL database",
"value": ""
},
"WORDPRESS_DB_NAME": {
"description": "Table name for the database",
"value": ""
},
"WORDPRESS_DB_USER": {
"description": "User name for the database",
"value": ""
},
"WORDPRESS_DB_PASSWORD": {
"description": "Password for the database",
"value": ""
},
"WORDPRESS_AUTH_KEY": {
"description": "wp-config secret key",
"generator": "secret"
},
"WORDPRESS_SECURE_AUTH_KEY": {
"description": "wp-config secret key",
"generator": "secret"
},
"WORDPRESS_LOGGED_IN_KEY": {
"description": "wp-config secret key",
"generator": "secret"
},
"WORDPRESS_NONCE_KEY": {
"description": "wp-config secret key",
"generator": "secret"
},
"WORDPRESS_AUTH_SALT": {
"description": "wp-config secret key",
"generator": "secret"
},
"WORDPRESS_SECURE_AUTH_SALT": {
"description": "wp-config secret key",
"generator": "secret"
},
"WORDPRESS_LOGGED_IN_SALT": {
"description": "wp-config secret key",
"generator": "secret"
},
"WORDPRESS_NONCE_SALT": {
"description": "wp-config secret key",
"generator": "secret"
}
},
"buildpacks": [
{
"url": "heroku/php"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "Eco"
}
},
"stack": "heroku-22"
}