Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to set the default port when I do

rails s

to 3010, instead of having to say:

rails s -p 3010

...every time. Any ideas?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can override the Port by adding the following code to config/boot.rb

require 'rails/commands/server'
module Rails
  class Server
    alias :default_options_alias :default_options
    def default_options
      default_options_alias.merge!(:Port => 3010)
    end    
  end
end
share|improve this answer
1  
Perfect, thanks! – juwiley May 20 '12 at 20:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.