blog/tasks
Kazuhiro MUSASHI 71876190b9 Deploy blog site to the staging environment:
```
--- a/tasks/deploy.rake
+++ b/tasks/deploy.rake
@@ -12,8 +12,6 @@ task :deploy => [:build] do
     end
   end

-  sh 'rsync -e "ssh -p 10022" -az --delete public webadm@10.0.1.234:~/works'
-
-  sh 'ssh -p 10022 webadm@10.0.1.234 "rm -rf /var/www/blog/*"'
-  sh 'ssh -p 10022 webadm@10.0.1.234 "cp -pr ~/works/public/* /var/www/blog/"'
+  sh 'ssh -p 10022 webadm@10.0.1.234 "rm -rf /var/www/test/*"'
+  sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.234:/var/www/test'
 end
```
2019-05-06 11:12:44 +08:00
..
build.rake Change the grep option/arguments to list up all the markdown files. 2019-04-20 14:36:03 +08:00
demo.rake initial commit 2019-03-31 19:00:21 +08:00
deploy.rake Deploy blog site to the staging environment: 2019-05-06 11:12:44 +08:00
new.rake Create the new artcle markdown to be generated under content directory 2019-04-20 14:38:32 +08:00
textlint.rake initial commit 2019-03-31 19:00:21 +08:00