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