forked from erxes/erxes-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
88 lines (88 loc) · 2.01 KB
/
app.json
File metadata and controls
88 lines (88 loc) · 2.01 KB
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
{
"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/erxes/erxes-api",
"logo": "https://raw.githubusercontent.com/erxes/erxes/master/public/images/logo-dark.png",
"success_url": "/",
"env": {
"PORT": {
"description": "A port number that erxes api will be running on",
"value": "3300"
},
"MAIN_APP_DOMAIN": {
"description": "Erxes URL",
"value": "https://erxes.herokuapp.com"
},
"WIDGETS_DOMAIN": {
"description": "Erxes Widget URL",
"value": "https://erxes-widget.herokuapp.com"
},
"INTEGRATIONS_API_DOMAIN": {
"description": "Erxes Integrations API URL",
"value": "https://erxes-integration.herokuapp.com"
},
"MONGO_URL": {
"description": "MONGO_URL",
"value": "MONGO_URL"
},
"RABBITMQ_HOST": {
"description": "RABBITMQ_HOST",
"value": "amqp://localhost"
},
"REDIS_HOST": {
"description": "REDIS_HOST",
"value": "REDIS_HOST"
},
"REDIS_PORT": {
"description": "REDIS_PORT",
"value": "28229"
},
"REDIS_PASSWORD": {
"description": "REDIS_PASSWORD",
"value": "REDIS_PASSWORD"
},
"PORT_CRONS": {
"description": "cron port",
"value": "3600"
},
"PORT_WORKERS": {
"description": "worker port",
"value": "3700"
},
"JWT_TOKEN_SECRET": {
"description": "JWT TOKEN SECRET",
"value": "replact it with your token"
}
},
"addons": [
{
"plan": "mongolab:sandbox",
"as": "MONGO"
},
{
"plan": "heroku-redis:hobby-dev",
"as": "REDIS"
},
{
"plan": "cloudamqp:lemur",
"as": "RABBITMQ"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
}
]
}