I was following the Heroku docs on getting Puma set up and entered this command:
bundle exec puma -t 5:5 -p ${PORT:-3000} -e ${RACK_ENV:-development}
Which made it so that now I run puma in my development environment whenever I run a rails s
. But or whatever reason Puma is causing havok. How do I switch back to using WEBrick??
Tried
bundle exec webrick -p ${PORT:-3000} -e ${RACK_ENV:-development}
But of course, command is not found: webrick. Knew that' be too easy...
Thanks!