Here’s my progress so far (just in case anyone is reading this and needs a much more in detail explanation for people who are not used to terminal ).
- bundle a HTML5 version, which creates a folder with various files inside, including one called index.html.
- Open terminal on Mac. Type cd and then drag the folder which contains the index.html file into the terminal window (this is a quick way of getting the address of that folder, which we need). Press enter.
- type python -m SimpleHTTPServer press enter.
- It should say Serving HTTP on 0.0.0.0 port 8000 …
- Open your browser and go to http://127.0.0.1:8000
- It should now be up and running!