Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Last active November 16, 2015 07:19
Show Gist options
  • Save tkuchiki/afce0ebf66762331a249 to your computer and use it in GitHub Desktop.
Save tkuchiki/afce0ebf66762331a249 to your computer and use it in GitHub Desktop.
sample (unicorn)
#!/usr/bin/env ruby
require 'sinatra/base'
class MyApp < Sinatra::Base
get '/' do
"Hello world\n"
end
end
#!/usr/bin/env ruby
require_relative './app.rb'
run MyApp
$ unicorn -c unicorn_config.rb -E development
#!/usr/bin/env ruby
worker_processes 2
preload_app true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment