forked from taodrive/ec-cube-on-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
executable file
·51 lines (51 loc) · 1.36 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
{
"name": "EC-CUBE3",
"description": "EC-CUBE 3.0.16 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:private-0",
"options": {
"version": "9.6"
}
},{
"plan": "heroku-redis:private-7"
}
],
"env": {
"ENV": {
"description": "production|staging|dev| (Initially production)",
"value": "dev"
},
"DATABASE_SERVER_VERSION": {
"description": "Database server version.",
"value": "9.6"
},
"AUTH_MAGIC": {
"description": "Secret key for login password.",
"generator": "secret"
},
"ADMIN_USER": {
"description": "The login id of admin user.",
"value": "admin"
},
"ADMIN_PASS": {
"description": "The password of admin user.",
"value": "password"
},
"ECCUBE_INSTALL": {
"description": "EC-Cube Installed(Initially 0)",
"value": "0"
}
},
"scripts": {
"postdeploy": "./post_deploy.sh"
},
"buildpacks": [
{
"url": "heroku/php"
}
]
}