A template for creating report made with Quarto.
Public link to the report: https://technology-service-center.github.io/reporting-template/
- Install Quarto CLI
- To edit the pages, modified the
.qmdfiles. Edit_quarto.ymlto change the layout of the website.
Use the following command to run the website on your local device:
quarto preview
- Run the
quarto renderto render your website in the/docsfolder. - Go to your repository setting > Pages. Under the "Build and deployment" section, select
Deploy from a branchand set the branch to/docsfolder.
- Clone your existing repository:
git clone [link to your existing repository]
- Add the template repository as a remote.
git remote add template https://github.com/technology-service-center/reporting-template.git
- Fetch the template repository data:
git fetch template
- Copy files from the template's main branch into your current branch:
git checkout template/main -- .
- Stage, commit the copied files, and then push to your own repository:
git add .
git commit -m "Add files from template repo"
git push origin main