summaryrefslogtreecommitdiff
path: root/config.ru
blob: ad609be76b5907fae1a6485e99f853d0f97341c8 (plain)
1
2
3
4
5
6
ENV["LAZAR_ENV"] = "development"#"production"
require 'bundler'
Bundler.require
require File.expand_path './application.rb'
require "sinatra/reloader" if development?
run Sinatra::Application