Start server on current directory:
python -m SimpleHTTPServer 8080
Python 3:
python3 -m http.server 8080
Faster / more robust alternatives: http://stackoverflow.com/questions/12905426/what-is-a-faster-alternative-to-pythons-simplehttpserver
Start server on current directory:
python -m SimpleHTTPServer 8080
Python 3:
python3 -m http.server 8080
Faster / more robust alternatives: http://stackoverflow.com/questions/12905426/what-is-a-faster-alternative-to-pythons-simplehttpserver