- Apr 13, 2018
- 319
- 257
or, if you have php binary installedIt's a bit simpler than that for MacOS and Linux. In the game directory, run:
# python 3.x
python -m http.server
# python 2.X
python -m SimpleHTTPServer
Then in a web browser (probably Chrome, given what other posts say)
You must be registered to see the links
php -S 127.0.0.1:8000 -t /path/to/game does the same thing