ToolJet/app.json
Adish M 6c34a7f8fb
Adding Postgrest to Heroku one click deployment (#5194)
* Update heroku.md

* Create pic

* Add files via upload

* Delete pic

* Update app.json

* Update heroku.md
2023-01-05 14:18:35 +05:30

86 lines
2.5 KiB
JSON

{
"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://tooljet.com/blue-logo.png",
"success_url": "/",
"scripts": {
"postdeploy": "export NODE_OPTIONS=\"--max_old_space_size=1024\"; npm run db:migrate"
},
"env": {
"NODE_ENV": {
"description": "Environment [production/development]",
"value": "production"
},
"TOOLJET_HOST": {
"description": "Public URL of ToolJet installation. 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 installation. (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": ""
},
"NODE_OPTIONS": {
"description": "Node options configured to increase node memory to support app build",
"value": "--max-old-space-size=4096"
},
"DISABLE_SIGNUPS": {
"description": "Disable sign up in login page only applicable if Multi-Workspace feature is turned on",
"value": "false"
},
"DISABLE_MULTI_WORKSPACE": {
"description": "Disables Multi-Workspace feature",
"value": "false"
},
"ENABLE_TOOLJET_DB": {
"description": "To enable Tooljet Database feature",
"value": "false"
},
"DEPLOYMENT_PLATFORM": {
"description": "Platform ToolJet is deployed on",
"value": "heroku"
}
},
"formation": {
"web": {
"quantity": 1,
"size": "standard-2x"
}
},
"image": "heroku/nodejs",
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "13"
}
}
],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku-community/apt"
},
{
"url": "https://github.com/featurist/oracle-client-buildpack.git"
}
],
"environments": {
"test": {
"scripts": {
"test": "npm run test --prefix server && npm run test:e2e --prefix server"
}
}
}
}