diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..1e91991 --- /dev/null +++ b/Procfile @@ -0,0 +1,2 @@ +release: bundle exec rails db:migrate +web: bundle exec puma -C config/puma.rb \ No newline at end of file diff --git a/app.json b/app.json new file mode 100644 index 0000000..4e6b111 --- /dev/null +++ b/app.json @@ -0,0 +1,26 @@ +{ + "name": "timdex", + "stack": "heroku-22", + "scripts": {}, + "env": { + "LINKRESOLVER_BASEURL": { + "required": false + }, + "UNPAYWALL_EMAIL": { + "required": false + } + }, + "formation": { + "web": { + "quantity": 1 + } + }, + "addons": [ + "heroku-postgresql" + ], + "buildpacks": [ + { + "url": "heroku/ruby" + } + ] +}