After
added Procfile to introduce deployment release phase behavior
Note
Heroku runs the following default behavior as a part of the web phase:
bundle exec rails server -p $PORT -e $RAILS_ENV
This behavior is only over written when introducing web: commands to the Procfile
Before no
Procfile
to run with HerokuAfter added
Procfile
to introduce deployment release phase behaviorNote Heroku runs the following default behavior as a part of the web phase:
bundle exec rails server -p $PORT -e $RAILS_ENV
This behavior is only over written when introducingweb:
commands to the Procfile