Module: ConfigServer
- Defined in:
- lib/config_server.rb,
lib/config_server/version.rb
Defined Under Namespace
Classes: App
Constant Summary collapse
- VERSION =
"0.1.3"
Class Method Summary collapse
Class Method Details
.start ⇒ Object
7 8 9 10 11 |
# File 'lib/config_server.rb', line 7 def self.start port = ENV["SERVER_PORT"] || 8080 config_file = ENV["CONFIG_FILE"] || "config.yml" Rack::Server.start(:Host => "0.0.0.0", :Port => port, :app => ConfigServer::App.new(config_file)) end |