This repository has been archived by the owner on Oct 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
74 lines (74 loc) · 1.74 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "odoo crm",
"description": "CRM, business intel, sales and marketing platform as a service.",
"keywords": [
"crm",
"dynamic",
"sales",
"marketing"
],
"website": "https://majordomo.fund/",
"repository": "https://github.com/denzuko/fund.majordomo.crm",
"logo": "https://apkdl.in/apkimage/nQLrnsbT538MCa82gR5uyeUDFKzVCc3M9YR340CmaWeNmhgaf_J6XHqKMp5kojnXUuA=rw",
"success_url": "/web/login",
"scripts": {},
"env": {
"SECRET_TOKEN": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of processes to run.",
"value": "1"
},
"AWS_ACCESS_KEY_ID": {
"descriptin": "S3 bucket access key",
"value": "",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "S3 bucket secret key",
"value": "",
"required": false
},
"AWS_REGION": {
"description": "AWS Region",
"value": "",
"required": false
},
"S3_BUCKET": {
"description": "S3 bucket name for backups",
"value": "",
"required": false
}
},
"formation": {
"web": {
"quantity": 2,
"size": "Performance-M"
}
},
"image": "heroku/python",
"addons": [
{
"plan": "heroku-redis:hobby-dev"
},
{
"plan": "heroku-postgresql:hobby-dev"
}
],
"stack": "heroku-20",
"buildpacks": [
{ "url": "https://github.com/odooku/odooku-buildpack.git#11.0" },
{ "url": "https://github.com/Daplanet/xelatex-buildpack" },
{ "url": "heroku/python" },
{ "url": "heroku/nodejs" }
],
"environments": {
"test": {
"scripts": {
"test": "exit 0"
}
}
}
}