Add a Procfile that will run migrations during release
Open
good first issue
- Dominant language
- Ruby
- Stars
- 2
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
Currently when you push a new branch to heroku no migrations are run automatically.
Instead we need to manually run migrations after each deploy.
By adding the required Procfile we can automate the release steps.
Something like this.
```Procfile
release: rake db:migrate
web: bundle exec puma -C config/puma.rb
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.