Skip to content

Instantly share code, notes, and snippets.

@defunkt
Created August 24, 2009 02:08
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save defunkt/173604 to your computer and use it in GitHub Desktop.
Save defunkt/173604 to your computer and use it in GitHub Desktop.

Poor Man's Deploy

  • Start a Sinatra server on port 4000
  • GET / to that server triggers a git pull and mod_rails restart
  • Hit port 4000 locally after pushing

Why?

We wanted a really, really simple way to deploy Hurl during the 2009 Rails Rumble.

require 'rubygems'
require 'deployr'
require 'thin'
Rack::Handler::Thin.run Deployr.new, :Port => 4000
require 'sinatra/base'
class Deployr < Sinatra::Base
get '/' do
update_hurl
"ok"
end
def update_hurl
return if @running
@running = true
Thread.new do
system "cd /www/hurl/current && git pull origin master && touch tmp/restart.txt"
@running = false
end
end
end
task :default => :deploy
desc "Sync changes and deploy the app!"
task :deploy do
`git pull origin master && git push origin master`
`curl -s http://hurl.r09.railsrumble.com:4000/ &> /dev/null`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment