Skip to content

Instantly share code, notes, and snippets.

@staycreativedesign
Created May 8, 2017 04:57
Show Gist options
  • Select an option

  • Save staycreativedesign/44118d1413daa4c469b200df1798cdff to your computer and use it in GitHub Desktop.

Select an option

Save staycreativedesign/44118d1413daa4c469b200df1798cdff to your computer and use it in GitHub Desktop.
desc "Deploys the current version to the server."
task :deploy do
deploy do
# Put things that will set up an empty directory into a fully set-up
# instance of your project.
invoke :'git:clone'
invoke :'bundle:install'
invoke :'deploy:cleanup'
invoke :restart
end
end
desc "Restarting Nginx"
task :restart do
comment "Restarting Nginx"
command "sudo service nginx restart"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment