Start a local HTTP server (python)
python -m http.server 8899 --bind 127.0.0.1
Starts a simple HTTP server on port 8899, binding it to the localhost IP (127.0.0.1).
python -m http.server 8899 --bind 127.0.0.1
Starts a simple HTTP server on port 8899, binding it to the localhost IP (127.0.0.1).