Merge pull request #743 from southdesign/master

Added python 3 version self hosting startup option.
This commit is contained in:
Tor Hveem 2016-02-06 15:03:35 +01:00
commit 1df82da2be

View file

@ -44,7 +44,10 @@ Here's a simple example using the python simple web server:
```bash
git clone https://github.com/glowing-bear/glowing-bear
cd glowing-bear
# python 2.*
python -m SimpleHTTPServer
# or python 3.*
python -m http.server
```
Now you can point your browser to [http://localhost:8000](http://localhost:8000)!