sshuttle-gui/start_server.sh
Alex Kazik 3649d3453d Disable offline caching during development
This makes development easier as always the latest version is used.
2022-08-02 09:38:54 +02:00

13 lines
344 B
Bash
Executable file

#!/usr/bin/env bash
set -eu
PORT=8080
# Starts a local web-server that serves the contents of the `doc/` folder,
# which is the folder to where the web version is compiled.
echo "open http://localhost:$PORT/index.html#dev"
(cd docs && basic-http-server --addr 127.0.0.1:$PORT .)
# (cd docs && python3 -m http.server $PORT --bind 127.0.0.1)