Skip to content

Instantly share code, notes, and snippets.

View hvanhonacker's full-sized avatar

Hugo hvanhonacker

  • Lille, France
View GitHub Profile
@hvanhonacker
hvanhonacker / deploy.rb
Last active August 29, 2015 14:17 — forked from cserb/deploy.rb
namespace :qc do
desc "start queue classic"
task :start do
run "nohup sh #{current_path}/qc_worker start > /dev/null 2>&1 &"
end
desc "stop queue classic"
task :stop do
run "sh #{current_path}/qc_worker stop"
end