From 783adb7cef7cf05c86734c4a92db706811c75a93 Mon Sep 17 00:00:00 2001 From: Ben Delaney Date: Wed, 2 Dec 2015 21:21:26 -0800 Subject: [PATCH] Added RunInChrome.bat to ease running locally on Windows. --- RunInChrome.bat | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 RunInChrome.bat diff --git a/RunInChrome.bat b/RunInChrome.bat new file mode 100644 index 0000000..a85e1c3 --- /dev/null +++ b/RunInChrome.bat @@ -0,0 +1,8 @@ +# Runs a light web server locally, and opens the application in chrome. + +# Chrome must be installed here. +start "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" "http://localhost:8000/" + +# Python 3 must be on the path +python -m http.server 8000 +exit \ No newline at end of file