sshuttle-gui/start_server.bat
Thomas Ramirez e5e87231a0
🔨 Translate *.sh into *.bat (#46)
... for Microsoft Windows users
2022-02-07 10:38:20 +01:00

12 lines
339 B
Batchfile

@echo off
@REM Starts a local web-server that serves the contents of the `doc/` folder,
@REM which is the folder to where the web version is compiled.
cargo install basic-http-server
echo "open http://localhost:8080"
(cd docs && basic-http-server --addr 127.0.0.1:8080 .)
@REM (cd docs && python3 -m http.server 8080 --bind 127.0.0.1)