Slides are saved as PDF for the course, but the maybe created in other applications. If the slides were created in an online tool such as Google docs the links to can be found here.
Generate static files for local development.
npx tutors-html
This will generate the contains of the public-site
folder.
Serving the site can be done by the built-in python module http.server
, which will be pre-installed on most OS's.
python -m http.server -d public-site
To deploy the site locally and test your changes, you can use make all
, which will build and then run a container that will be available at localhost:8000
.
make all