Skip to content

Instantly share code, notes, and snippets.

@ethangunderson
Created February 19, 2010 21:49
Show Gist options
  • Select an option

  • Save ethangunderson/309253 to your computer and use it in GitHub Desktop.

Select an option

Save ethangunderson/309253 to your computer and use it in GitHub Desktop.
set :application, "ignitious"
set :repository, "[email protected]:ethangunderson/ignitious.git"
set :ssh_flags, "-p 12345"
task :stage do
set :deploy_to, "/var/apps/#{application}-stage"
set :domain, "[email protected]"
end
task :production do
set :deploy_to, "/var/apps/#{application}"
set :domain, "[email protected]"
end
task "deploy" => %w[
vlad:update
vlad:cleanup
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment