Created
May 8, 2017 04:57
-
-
Save staycreativedesign/44118d1413daa4c469b200df1798cdff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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