diff --git a/config/boot.rb b/config/boot.rb index 5e5f0c1..4ea4ef9 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -2,3 +2,12 @@ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE']) + +require 'rails/commands/server' +module Rails + class Server + def default_options + super.merge(Host: '127.0.0.1', Port: 3000) + end + end +end