Skip to content

Instantly share code, notes, and snippets.

@mikehale
Forked from jtimberman/config.ru
Created September 13, 2010 20:20
Show Gist options
  • Save mikehale/577957 to your computer and use it in GitHub Desktop.
Save mikehale/577957 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'merb-core'
require 'chef'
Chef::Config.from_file(File.join("/etc", "chef", "server.rb"))
Merb::Config.setup(:merb_root => File.expand_path(File.dirname(__FILE__)),
:environment => ENV['RACK_ENV'],
:fork_for_class_load => false,
:init_file => File.dirname(__FILE__) / "config/init.rb")
Merb.environment = Merb::Config[:environment]
Merb.root = Merb::Config[:merb_root]
Merb::BootLoader.run
# Uncomment if your app is mounted at a suburi
#if prefix = ::Merb::Config[:path_prefix]
# use Merb::Rack::PathPrefix, prefix
#end
run Merb::Rack::Application.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment