andela/eventx

View on GitHub
config/boot.rb

Summary

Maintainability
A
0 mins
Test Coverage
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile", __FILE__)

require "bundler/setup" # Set up gems listed in the Gemfile.
require "rails/commands/server"

module Rails
  class Server
    def default_options
      super.merge(Host: "0.0.0.0", Port: 3000)
    end
  end
end