forked from bellodox/odooku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 1.18 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
{
"name": "Odooku",
"description": "Run Odoo on Heroku",
"repository": "https://github.com/adaptivdesign/odooku",
"keywords": [
"odoo",
"openerp",
"python"
],
"buildpacks": [
{
"url": "https://github.com/Prescrypto/odooku-buildpack#submodules-fetch"
},
{
"url": "https://github.com/SectorLabs/heroku-buildpack-git-submodule.git"
}
],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "9.6"
}
},
"papertrail",
"heroku-redis"
],
"env": {
"AWS_ACCESS_KEY_ID": {
"description": "AWS access key id"
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS secret access key"
},
"AWS_REGION": {
"description": "AWS region",
"value": "us-east-1"
},
"S3_BUCKET": {
"description": "Amazon S3 bucket for attachment storage",
"required": true
},
"GIT_REPO_URL": {
"description": "Git SSH url to fetch submodules"
},
"ODOOKU_ADDONS": {
"description": "odooku addons"
},
"GIT_SSH_KEY": {
"description": "Git SSH key"
}
},
"scripts": {
"postdeploy": "odooku database preload"
}
}