mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 13:37:28 +00:00
59 lines
1.6 KiB
JSON
59 lines
1.6 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://app.tooljet.io/assets/images/logo.svg",
|
|
"success_url": "/",
|
|
"scripts":{
|
|
"postdeploy": "bundle exec rails db:seed"
|
|
},
|
|
"env": {
|
|
"RAILS_ENV": {
|
|
"description": "Environment for rails middleware.",
|
|
"value": "production"
|
|
},
|
|
"RACK_ENV": {
|
|
"description": "Environment for rack middleware.",
|
|
"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": "Key for encrypting datasource credentials.",
|
|
"value": ""
|
|
},
|
|
"SECRET_KEY_BASE": {
|
|
"description": "Used by ruby on rails as the input secret to the application's key generator.",
|
|
"value": ""
|
|
}
|
|
},
|
|
"formation": {
|
|
"web": {
|
|
"quantity": 1
|
|
}
|
|
},
|
|
"image": "heroku/ruby",
|
|
"addons": ["heroku-postgresql"],
|
|
"buildpacks": [
|
|
{
|
|
"url": "heroku/nodejs"
|
|
},
|
|
{
|
|
"url": "heroku/ruby"
|
|
}
|
|
],
|
|
"environments": {
|
|
"test": {
|
|
"scripts": {
|
|
"test": "bundle exec rake test"
|
|
}
|
|
}
|
|
}
|
|
}
|