-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
45 lines (45 loc) · 1.15 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
{
"name": "EC-CUBE4",
"description": "EC-CUBE 4 on Heroku",
"website": "https://github.com/EC-CUBE/ec-cube",
"repository": "https://github.com/EC-CUBE/ec-cube",
"keywords": ["php", "ec", "e-commerce", "ec-cube"],
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.6"
}
}
],
"env": {
"APP_ENV": {
"description": "prod|dev",
"value": "prod"
},
"APP_DEBUG": {
"description": "1|0",
"value": "0"
},
"DATABASE_SERVER_VERSION": {
"description": "Database server version.",
"value": "9.6"
},
"ECCUBE_AUTH_MAGIC": {
"description": "Secret key for login password.",
"generator": "secret"
},
"ECCUBE_ADMIN_USER": {
"description": "The login id of admin user.",
"value": "admin"
},
"ECCUBE_ADMIN_PASS": {
"description": "The password of admin user."
}
},
"buildpacks": [
{
"url": "heroku/php"
}
]
}