I just upgraded to Ruby 1.9.3-p374 on my development machine. Now, when I start Rails with foreman start
, it uses port 5000.
Here is my Procfile:
web: bundle exec rails server thin -p $PORT -e $RACK_ENV
My .env:
RACK_ENV=development
PORT=3000
Why is it giving me port 5000, and how can I change it back?