Commit d66eb59de4f1f16ae6d877b4fbac15bf3eaefa16

Authored by Arthur Neves
1 parent c1a24d88
Exists in master and in 1 other branch production

Organize Procfiles

Add a dev Procfile, so people can run puma locally:
  foreman start --procfile=Procfile.dev
Make the default Procfile use unicorn, so we use it on Heroku
Showing 2 changed files with 2 additions and 1 deletions   Show diff stats
Procfile
1   -web: bundle exec puma
  1 +web: bundle exec unicorn -p $PORT -c ./config/unicorn.rb
... ...
Procfile.dev 0 → 100644
... ... @@ -0,0 +1 @@
  1 +web: bundle exec puma
... ...