This repo contains the sources for the SynTest Framework website. The website is built on top of the popular open-source static site generator Hugo and makes use of the Wowchemy theme. The Netlify service is used to host the website.
Material can be added by anyone in any section. For adding material, check this documentation.
Note: Do not directly push your changes to the main branch. Instead, send a Pull Request (PR).
Steps:
- Run
hugo new --kind authors authors/<firstname-lastname>
- Update your information in content/authors//index.md
- Replace avatar.{jpg,jpeg,png,webp} with your photo
When making changes to the website, it is useful to build and preview the website locally before committing the changes to the repository. Before you can build the website, you first need to install the following dependencies:
- Install Hugo using this documentation.
- Install NPM using this documentation
- Install the development dependencies:
npm install
To preview the website:
- Run
view.sh
When making changes, format the files afterwards:
- Run
npm run format
When an error occurs during building, try deleting the local Hugo cache:
- MacOS/Linux:
sudo rm -rf $TMPDIR/hugo_cache/
The website is automatically deployed whenever a new commit is merged into the main branch. To see a preview of the changes in a PR, press the details link in the deploy status check.