2011-11-21 21:36:42 +00:00
|
|
|
# This file is used by Rack-based servers to start the application.
|
|
|
|
|
2014-01-29 15:00:24 +00:00
|
|
|
if ENV['RAILS_ENV'] == 'production'
|
|
|
|
require 'unicorn/worker_killer'
|
|
|
|
use Unicorn::WorkerKiller::Oom, (160*(1024**2)), (180*(1024**2))
|
|
|
|
end
|
2014-01-27 17:05:18 +00:00
|
|
|
|
2011-11-21 21:36:42 +00:00
|
|
|
require ::File.expand_path('../config/environment', __FILE__)
|
2012-07-25 22:29:31 +00:00
|
|
|
|
|
|
|
use Rack::Deflater
|
|
|
|
|
2013-09-23 17:05:36 +00:00
|
|
|
run Asciinema::Application
|