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",
|
2022-01-30 08:02:07 +00:00
|
|
|
"logo": "https://tooljet.com/blue-logo.png",
|
2021-06-06 17:59:02 +00:00
|
|
|
"success_url": "/",
|
2021-11-17 11:21:50 +00:00
|
|
|
"scripts": {
|
2023-01-03 07:55:45 +00:00
|
|
|
"postdeploy": "export NODE_OPTIONS=\"--max_old_space_size=1024\"; npm run db:migrate"
|
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": {
|
2022-10-11 08:16:40 +00:00
|
|
|
"description": "Public URL of ToolJet installation. This is usually https://<app-name-in-first-step>.herokuapp.com",
|
2021-06-06 17:59:02 +00:00
|
|
|
"value": "https://<app-name-in-first-step>.herokuapp.com"
|
|
|
|
|
},
|
|
|
|
|
"TOOLJET_SERVER_URL": {
|
2022-10-11 08:16:40 +00:00
|
|
|
"description": "URL of ToolJet server installation. (This is same as the TOOLJET_HOST for Heroku deployments)",
|
2021-06-06 17:59:02 +00:00
|
|
|
"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"
|
2022-05-05 07:08:42 +00:00
|
|
|
},
|
|
|
|
|
"DISABLE_SIGNUPS": {
|
2022-05-11 11:00:25 +00:00
|
|
|
"description": "Disable sign up in login page only applicable if Multi-Workspace feature is turned on",
|
2022-05-05 07:08:42 +00:00
|
|
|
"value": "false"
|
|
|
|
|
},
|
2022-05-11 11:00:25 +00:00
|
|
|
"DISABLE_MULTI_WORKSPACE": {
|
|
|
|
|
"description": "Disables Multi-Workspace feature",
|
2022-05-05 07:08:42 +00:00
|
|
|
"value": "false"
|
2022-05-26 01:41:56 +00:00
|
|
|
},
|
2023-01-05 08:48:35 +00:00
|
|
|
"ENABLE_TOOLJET_DB": {
|
|
|
|
|
"description": "To enable Tooljet Database feature",
|
|
|
|
|
"value": "false"
|
|
|
|
|
},
|
2022-05-26 01:41:56 +00:00
|
|
|
"DEPLOYMENT_PLATFORM": {
|
|
|
|
|
"description": "Platform ToolJet is deployed on",
|
|
|
|
|
"value": "heroku"
|
2021-06-06 17:59:02 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"formation": {
|
|
|
|
|
"web": {
|
2022-12-02 16:53:27 +00:00
|
|
|
"quantity": 1,
|
|
|
|
|
"size": "standard-2x"
|
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": [
|
2023-01-03 07:55:45 +00:00
|
|
|
{
|
|
|
|
|
"plan": "heroku-postgresql",
|
|
|
|
|
"options": {
|
|
|
|
|
"version": "13"
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-11-17 11:21:50 +00:00
|
|
|
],
|
2021-06-06 17:59:02 +00:00
|
|
|
"buildpacks": [
|
|
|
|
|
{
|
|
|
|
|
"url": "heroku/nodejs"
|
2022-03-15 02:30:02 +00:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"url": "heroku-community/apt"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"url": "https://github.com/featurist/oracle-client-buildpack.git"
|
2021-06-06 17:59:02 +00:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"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
|
|
|
}
|
2022-05-26 01:41:56 +00:00
|
|
|
}
|