I set the port as 3000 in my application.yml (figaro managing env variables) rails s uses port 3000 but when I run foreman start (as recommended by Her
rails s
foreman start
Use a .foreman file with:
port: 3000
or a .env file with:
PORT=3000
Either one should work, then you can just use foreman start