forked from erxes/erxes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
39 lines (39 loc) · 1.03 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
{
"name": "Erxes on Heroku",
"description": "Open source growth marketing platform",
"keywords": [
"Marketing",
"sales",
"customer engagement",
"customer support",
"CRM"
],
"website": "https://erxes.io",
"repository": "https://github.com/erxes/erxes",
"logo": "https://raw.githubusercontent.com/erxes/erxes/master/ui/public/images/logo-dark.png",
"success_url": "/",
"env": {
"PORT": {
"description": "A port number that erxes will be running on",
"value": "3000"
},
"REACT_APP_CDN_HOST": {
"description": "Erxes Widget URL",
"value": "https://erxes-widget.herokuapp.com"
},
"REACT_APP_API_URL": {
"description": "Erxes API URL",
"value": "https://erxes-api.herokuapp.com"
},
"REACT_APP_API_SUBSCRIPTION_URL": {
"description": "Erxes API Subscriptions URL",
"value": "wss://erxes-api.herokuapp.com/subscriptions"
}
},
"addons": [],
"buildpacks": [
{
"url": "https://github.com/batnasan/heroku-buildpack-subdir"
}
]
}