-
Notifications
You must be signed in to change notification settings - Fork 3
Running Your Project
Logodaedalus edited this page Dec 27, 2018
·
1 revision
StoryAssembler needs to run from a server so it doesn't get Cross-Site Scripting (XSS) errors. If you're putting your story on a webserver, then this won't effect you--you can just go to its web address. However, if you're working with StoryAssembler on your own computer, here's how you start up a webserver to see your story:
- Start up Terminal
- Navigate to the StoryAssembler root directory
- Type command to start up a Python webserver:
python -m SimpleHTTPServer
- Start a web browser and go to http://localhost:8000
- If you don't have Python, download it (2 or 3 is fine)
- Start up Command
- Navigate to the StoryAssembler root directory
- Type command to start a webserver:
- Python 3:
python -m http.server
- Python 2:
python -m SimpleHttPServer
- Start a web browser and go to http://localhost:8000