Skip to content

Running Your Project

Logodaedalus edited this page Dec 27, 2018 · 1 revision

Summary

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:

How to Run (Mac)

  1. Start up Terminal
  2. Navigate to the StoryAssembler root directory
  3. Type command to start up a Python webserver: python -m SimpleHTTPServer
  4. Start a web browser and go to http://localhost:8000

How to Run (Windows)

  1. If you don't have Python, download it (2 or 3 is fine)
  2. Start up Command
  3. Navigate to the StoryAssembler root directory
  4. Type command to start a webserver:
  • Python 3: python -m http.server
  • Python 2: python -m SimpleHttPServer
  1. Start a web browser and go to http://localhost:8000
Clone this wiki locally