Skip to content

rh-outreach-courses/tutors-linux-course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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