summaryrefslogtreecommitdiff
path: root/lib/config/config_ru.rb
blob: 09fba3b39f6cf6e67085b2b734ab58e7d3348270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'rubygems'
require 'rack'
require 'rack/contrib'
require 'application.rb'

# log at centralized place
logfile = "#{LOG_DIR}/#{ENV["RACK_ENV"]}.log"
log = File.new(logfile, "a+")
$stdout.reopen(log)
$stderr.reopen(log)
$stdout.sync = true
$stderr.sync = true
set :logging, false
set :raise_errors, true 

['public','tmp'].each do |dir|
	FileUtils.mkdir_p dir unless File.exists?(dir)
end
 
use Rack::ShowExceptions
#if MAIL
#	use Rack::MailExceptions do |mail|
#			mail.to 'helma@in-silico.ch'
#			mail.subject '[ERROR] %s'
#			mail.from "toxcreate@in-silico.ch"
#			mail.smtp MAIL
#	end 
#end