From f6761642bb4eef5d2ef8a558f058fdb3dca85804 Mon Sep 17 00:00:00 2001 From: Ramnath Vaidyanathan Date: Wed, 10 Apr 2013 15:11:28 -0400 Subject: [PATCH] add a makefile to automate tasks --- makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..5c7d66e --- /dev/null +++ b/makefile @@ -0,0 +1,11 @@ +push: + git push git@github.com:ramnathv/rCharts master:master + +docs: + cd inst/docs && \ + git add . && \ + git commit -am "update documentations" && \ + git push git@github.com:ramnathv/rCharts master:gh-pages && \ + +shinyApp: + rsync -avz --delete inst/rChartApp ramnathv@glimmer.rstudio.com:~/ShinyApps/ \ No newline at end of file