I get this error when trying to deploy my Ruby on Rails app. Here is the error in my command line:
###### WARNING:
remote: No Procfile detected, using the default web server (webrick)
remote: https://devcenter.heroku.com/articles/ruby-default-web-server
remote:
remote: -----> Discovering process types
remote: Procfile declares types -> (none)
remote: Default types for Ruby -> console, rake, web, worker
remote:
remote: -----> Compressing... done, 29.5MB
remote: -----> Launching... done, v21
remote: https://agile-sea-1900.herokuapp.com/ deployed to Heroku
remote:
remote: Verifying deploy... done.
To https://git.heroku.com/agile-sea-1900.git
e5d3ad8..975d5eb master -> master
I tried following the advice in "No Procfile detected, using the default web server" [archive.org] - bundling the thin
gem and creating a Procfile containing:
web: bundle exec thin start -p $PORT
But that didn't help.