forked from ToolJet/ToolJet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
52 lines (52 loc) · 1.54 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
{
"name": "ToolJet",
"description": "ToolJet is an open-source low-code framework to build and deploy internal tools.",
"website": "https://tooljet.io/",
"repository": "https://github.com/tooljet/tooljet",
"logo": "https://app.tooljet.io/assets/images/logo.svg",
"success_url": "/",
"scripts":{
"predeploy": "npm install --prefix server && npm run build --prefix server"
},
"env": {
"NODE_ENV": {
"description": "Environment [production/development]",
"value": "production"
},
"TOOLJET_HOST": {
"description": "Public URL of ToolJet installtion. This is usually https://<app-name-in-first-step>.herokuapp.com",
"value": "https://<app-name-in-first-step>.herokuapp.com"
},
"TOOLJET_SERVER_URL": {
"description": "URL of ToolJet server installtion. (This is same as the TOOLJET_HOST for Heroku deployments)",
"value": "https://<app-name-in-first-step>.herokuapp.com"
},
"LOCKBOX_MASTER_KEY": {
"description": "Master key for encrypting datasource credentials.",
"value": ""
},
"SECRET_KEY_BASE": {
"description": "Used by ToolJet server as the input secret to the application's key generator.",
"value": ""
}
},
"formation": {
"web": {
"quantity": 1
}
},
"image": "heroku/nodejs",
"addons": ["heroku-postgresql"],
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"environments": {
"test": {
"scripts": {
"test": "npm run test --prefix server && npm run test:e2e --prefix server"
}
}
}
}