Merge pull request #69 from CactusPuppy/migrate-on-deploy

Run database migrations on Heroku deploy
This commit is contained in:
CactusPuppy 2021-04-13 16:30:08 -07:00 committed by GitHub
commit bf945c4b5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,2 +1,3 @@
web: bundle exec rails server -b 0.0.0.0 web: bundle exec rails server -b 0.0.0.0
worker: bundle exec rails jobs:work worker: bundle exec rails jobs:work
release: rake db:migrate