This repo contains the sources for the Computational Intelligence for Software Engineering Lab (CISELab) 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
Steps:
- Run
hugo new --kind project project/<my-project-name>
- Update the project information in content/project//index.md
- Replace featured.{jpg,jpeg,png,webp} with the project logo
Steps:
- Run
hugo new --kind publication publication/<my-publication>
- Update publication information in content/publication//index.md
- Add the paper at content/publication//.pdf or link to an external version using url_pdf
- Add the BibTex at content/publication//cite.bib
Set the publication to pre-print when it has not been published yet.
Steps:
- Run
hugo new --kind event event/<my-talk-name>
- Update event information in content/publication//index.md
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.