Storm/app.json
2017-07-28 11:32:19 -05:00

36 lines
714 B
JSON

{
"name": "Storm",
"description": "Self-hosted website monitoring",
"repository": "https://github.com/ProctorU/storm.git",
"logo": "https://s3-us-west-2.amazonaws.com/dev-team-resources/storm-wordmark.svg",
"keywords": ["monitoring", "storm", "slack", "rails"],
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/ruby"
}
],
"env": {
"RACK_ENV": {
"value": "production"
},
"NODE_ENV": {
"value": "production"
},
"PORT": {
"value": "3000"
},
"RAILS_MAX_THREADS": {
"value": "5"
},
"WEB_CONCURRENCY": {
"value": "2"
}
},
"scripts": {
"postdeploy": "bundle exec rails db:migrate"
}
}