Wiki

Clone wiki

Bitbucket HTTP-Request Hook / How to start a simple webserver for testing

Python

#!bash

$ python -m SimpleHTTPServer 8000
$ python3 -m http.server 8000

Ruby

#!bash

$ ruby -run -ehttpd . -p8000

Other possibilities

Big list of http static server one-liners

Updated