Hello there!
Every time I create a new Rails app on my laptop my first change after rails new it to set the localhost port to something other than 3000. That’s because only one app can run on the same port at the same time.
My feature proposal is to add a --port option to the rails new command so I can specify the port in the same command, e.g.:
rails new my_app --port 4567
This could also be beneficial for first time users, as they could just set in the same command rather than having to edit config/puma.rb and in config/environments/development.rb to make the change.
Let me know your thoughts. Thanks!