This repo contains a template for lecture materials prepared with Quarto.
# clone as usual
git clone git@github.com:thomasmanke/website_qmd.git
mkdir project_name
cd project_name
# create a new quarto project
quarto use template thomasmanke/website_qmd
# preview the website
quarto preview
In any case you might want to create a minimal environment to include python, quarto and a few very common packages.
A simple micromamba.yml environment file is provided in this repo. But notice that this is not necessarily the same environment that will be used in the lectures as each can have their own environment files.
micromamba create -n <project_name> website_qmd/micromamba.yml -y
micromamba activate <project_name>
git init
git add .
git commit -m "Start template for website development with quarto"
# Create a new repository on GitHub: thomasmanke/website_qmd.git
git remote add origin git@github.com:thomasmanke/website_qmd.git
git push -u origin main