This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
app.json
92 lines (92 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "Erxes API on Heroku",
"description": "GraphQL API for erxes main project",
"keywords": [
"Marketing",
"sales",
"customer engagement",
"customer support",
"CRM",
"node",
"express",
"graphql",
"apollo"
],
"website": "https://erxes.io",
"repository": "https://github.com/batnasan/erxes-api",
"logo": "https://raw.githubusercontent.com/erxes/erxes/master/ui/public/images/logo-dark.png",
"success_url": "/",
"env": {
"PORT": {
"description": "A port number that erxes api will be running on",
"value": "3300"
},
"PORT_CRONS": {
"description": "A port number that erxes api crons will be running on",
"value": "3600"
},
"PORT_WORKERS": {
"description": "A port number that erxes api workers will be running on",
"value": "3700"
},
"MAIN_APP_DOMAIN": {
"description": "Erxes URL",
"value": "https://erxes.herokuapp.com"
},
"MONGO_URL": {
"description": "MONGO_URL",
"value": "MONGO_URL"
},
"REDIS_HOST": {
"description": "REDIS_HOST",
"value": "REDIS_HOST"
},
"REDIS_PORT": {
"description": "REDIS_PORT",
"value": "28229"
},
"REDIS_PASSWORD": {
"description": "REDIS_PASSWORD",
"value": "REDIS_PASSWORD"
},
"RABBITMQ_HOST": {
"description": "RABBITMQ_HOST",
"value": "amqp://localhost"
},
"JWT_TOKEN_SECRET": {
"description": "JWT TOKEN SECRET",
"value": "replace it with your token"
},
"LOGS_API_DOMAIN": {
"description": "LOGS_API_DOMAIN",
"value": "https://LOGS_API_DOMAIN.herokuapp.com"
},
"INTEGRATIONS_API_DOMAIN": {
"description": "INTEGRATIONS_API_DOMAIN",
"value": "https://INTEGRATIONS_API_DOMAIN.herokuapp.com"
}
},
"addons": [
{
"plan": "mongolab:sandbox",
"as": "MONGO"
},
{
"plan": "heroku-redis:hobby-dev",
"as": "REDIS"
},
{
"plan": "cloudamqp:lemur",
"as": "RABBITMQ"
},
{
"plan": "bonsai:sandbox-6",
"as": "ELASTICSEARCH"
}
],
"buildpacks": [
{
"url": "https://github.com/batnasan/heroku-buildpack-subdir"
}
]
}