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 16
/
Copy pathapp.json
58 lines (58 loc) · 1.61 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
{
"name": "erxes-integrations",
"description": "erxes integrations",
"keywords": ["node", "express", "graphql", "apollo"],
"website": "https://erxes.io",
"repository": "https://github.com/erxes/erxes-logger",
"logo": "https://raw.githubusercontent.com/erxes/erxes/master/ui/public/images/logo-dark.png",
"success_url": "/",
"env": {
"PORT": {
"description": "A port number",
"value": "3400"
},
"DOMAIN": {
"description": "Integration app domain",
"value": "https://erxes-integration.herokuapp.com"
},
"MAIN_APP_DOMAIN": {
"description": "erxes front app domain",
"value": "https://erxes.herokuapp.com"
},
"MAIN_API_DOMAIN": {
"description": "erxes-api domain",
"value": "https://erxes-api.herokuapp.com"
},
"MONGO_URL": {
"description": "Integration MONGO URL",
"value": "INTEGRATION_MONGO_URL"
},
"RABBITMQ_HOST": {
"description": "RABBITMQ_HOST",
"value": "copy and paste from erxes-api RABBITMQ_HOST config var"
},
"REDIS_HOST": {
"description": "REDIS_HOST",
"value": "copy and paste from erxes-api REDIS_HOST config var"
},
"REDIS_PORT": {
"description": "REDIS_PORT",
"value": "copy and paste from erxes-api REDIS_PORT config var"
},
"REDIS_PASSWORD": {
"description": "REDIS_PASSWORD",
"value": "copy and paste from erxes-api REDIS_PASSWORD config var"
}
},
"addons": [
{
"plan": "mongolab:sandbox",
"as": "MONGO"
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs"
}
]
}