Setting up your environment

Environment setup

In this video, I explain how you can set up a local webserver that allows you to follow along with this course.

In short, that means that you should navigate to the movies folder in the code bundle from the previous lecture and run the following command to start a simple static file server:

python3 -m http.server 8080

This command uses python to kick off a local server in your current folder.

Verify that everything works by navigating to http://localhost:8080/1.json in your web browser of choice.

Complete and Continue