2021-04-29 14:21:22 +00:00
|
|
|
{
|
2021-06-06 17:59:02 +00:00
|
|
|
"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": "/",
|
2021-11-17 11:21:50 +00:00
|
|
|
"scripts": {
|
2021-07-30 03:51:18 +00:00
|
|
|
"predeploy": "npm install --prefix server && npm run build --prefix server"
|
2021-06-06 17:59:02 +00:00
|
|
|
},
|
|
|
|
|
"env": {
|
2021-07-30 03:51:18 +00:00
|
|
|
"NODE_ENV": {
|
|
|
|
|
"description": "Environment [production/development]",
|
2021-06-06 17:59:02 +00:00
|
|
|
"value": "production"
|
2021-04-29 14:21:22 +00:00
|
|
|
},
|
2021-06-06 17:59:02 +00:00
|
|
|
"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": {
|
2021-07-30 03:51:18 +00:00
|
|
|
"description": "Master key for encrypting datasource credentials.",
|
2021-06-06 17:59:02 +00:00
|
|
|
"value": ""
|
|
|
|
|
},
|
|
|
|
|
"SECRET_KEY_BASE": {
|
2021-07-30 03:51:18 +00:00
|
|
|
"description": "Used by ToolJet server as the input secret to the application's key generator.",
|
2021-06-06 17:59:02 +00:00
|
|
|
"value": ""
|
2021-11-15 02:48:11 +00:00
|
|
|
},
|
|
|
|
|
"NODE_OPTIONS": {
|
|
|
|
|
"description": "Node options configured to increase node memory to support app build",
|
2021-11-20 01:25:54 +00:00
|
|
|
"value": "--max-old-space-size=4096"
|
2021-11-17 11:21:50 +00:00
|
|
|
},
|
|
|
|
|
"SSO_GOOGLE_OAUTH2_CLIENT_ID": {
|
|
|
|
|
"description": "Google OAuth2 client id to enable single sign-on",
|
|
|
|
|
"value": ""
|
|
|
|
|
},
|
|
|
|
|
"SSO_DISABLE_SIGNUP": {
|
|
|
|
|
"description": "Disable sign-up via SSO",
|
|
|
|
|
"value": ""
|
2021-12-15 17:23:07 +00:00
|
|
|
},
|
|
|
|
|
"DISABLE_PASSWORD_LOGIN": {
|
|
|
|
|
"description": "Disable logging in with username and password. (Do not turn this on unless you've configured SSO and additional admins)",
|
|
|
|
|
"value": "false"
|
2021-06-06 17:59:02 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"formation": {
|
|
|
|
|
"web": {
|
2021-06-11 07:07:51 +00:00
|
|
|
"quantity": 1
|
2021-06-06 17:59:02 +00:00
|
|
|
}
|
|
|
|
|
},
|
2021-07-30 03:51:18 +00:00
|
|
|
"image": "heroku/nodejs",
|
2021-11-17 11:21:50 +00:00
|
|
|
"addons": [
|
|
|
|
|
"heroku-postgresql"
|
|
|
|
|
],
|
2021-06-06 17:59:02 +00:00
|
|
|
"buildpacks": [
|
|
|
|
|
{
|
|
|
|
|
"url": "heroku/nodejs"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"environments": {
|
|
|
|
|
"test": {
|
|
|
|
|
"scripts": {
|
2021-07-30 03:51:18 +00:00
|
|
|
"test": "npm run test --prefix server && npm run test:e2e --prefix server"
|
2021-04-29 14:21:22 +00:00
|
|
|
}
|
|
|
|
|
}
|
2021-06-06 17:59:02 +00:00
|
|
|
}
|
2021-12-15 17:23:07 +00:00
|
|
|
}
|