summaryrefslogtreecommitdiff
path: root/bin/installOnWindows.bat
diff options
context:
space:
mode:
authorMarcel Klehr <mklehr@gmx.net>2012-06-28 15:58:39 +0200
committerMarcel Klehr <mklehr@gmx.net>2012-06-28 15:58:39 +0200
commitc0ee0d8430a9d998a0383db3f856ef0f976a54ea (patch)
treed53d6b57a8e71a8fdb24ceeda81fdb27cf1a47bc /bin/installOnWindows.bat
parentb0d369883b17d8ab60eff0738f2f4ec8bb82e29f (diff)
downloadetherpad-lite-c0ee0d8430a9d998a0383db3f856ef0f976a54ea.zip
Add windows install script
Diffstat (limited to 'bin/installOnWindows.bat')
-rw-r--r--bin/installOnWindows.bat35
1 files changed, 35 insertions, 0 deletions
diff --git a/bin/installOnWindows.bat b/bin/installOnWindows.bat
new file mode 100644
index 00000000..b6f699de
--- /dev/null
+++ b/bin/installOnWindows.bat
@@ -0,0 +1,35 @@
+@echo off
+set NODE_VERSION=0.6.5
+set JQUERY_VERSION=1.7
+
+:: change directory to etherpad-lite root
+cd bin
+cd ..
+
+echo _
+echo Setting up settings.json...
+copy settings.json.template_windows settings.json
+
+echo _
+echo Updating node...
+curl -lo bin\node.exe http://nodejs.org/dist/v%NODE_VERSION%/node.exe
+
+echo _
+echo Installing etherpad-lite and dependencies...
+cmd /C npm install src/
+
+echo _
+echo Updating jquery...
+curl -lo "node_modules\ep_etherpad-lite\static\js\jquery.min.js" "http://code.jquery.com/jquery-%JQUERY_VERSION%.min.js"
+
+echo _
+echo Some other stuff...
+copy node_modules\ep_etherpad-lite\static\custom\js.template node_modules\ep_etherpad-lite\static\custom\index.template
+copy node_modules\ep_etherpad-lite\static\custom\js.template node_modules\ep_etherpad-lite\static\custom\pad.template
+copy node_modules\ep_etherpad-lite\static\custom\js.template node_modules\ep_etherpad-lite\static\custom\timeslider.template
+copy node_modules\ep_etherpad-lite\static\custom\css.template node_modules\ep_etherpad-lite\static\custom\index.template
+copy node_modules\ep_etherpad-lite\static\custom\css.template node_modules\ep_etherpad-lite\static\custom\pad.template
+copy node_modules\ep_etherpad-lite\static\custom\css.template node_modules\ep_etherpad-lite\static\custom\timeslider.template
+
+echo _
+echo Installed Etherpad-lite! \ No newline at end of file