Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 990 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 990 Bytes

Tutors Linux Course

Slides

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.

Development

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

Local Deployment

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