ICTU's Kwaliteitsaanpak is a set of guidelines used at ICTU for software development projects. It is only available in Dutch, sorry.
This repository contains the source information and automation scripts for generating ICTU's Kwaliteitsaanpak documentation. The Kwaliteitsaanpak itself is available via https://ictu.github.io/Kwaliteitsaanpak.
The Kwaliteitsaanpak consists of a main document containing the Kwaliteitsaanpak itself, a number of templates, and a self-assessment checklist. The sources are a collection of Markdown files and supporting material. Scripts convert the Kwaliteitsaanpak main document to html, the templates to docx, and the self-assessment checklist to xslx.
- For each guideline:
- Create a folder under ./Content/Maatregelen
- Add 2 files to the folder
- Definitie.md - brief one paragraph definition of the guideline
- Maatregel.md - guideline title, description, and rationale
- Add the maatregel to the document structure definition in ./DocumentDefinitions/Kwaliteitsaanpak/ICTU-Kwaliteitsaanpak.md
- Each document definition is stored inside a subfolder of ./DocumentDefinitions
- A document definition is composed of a number of files:
- document.json - meta data about the document
- document.md - content of the document
- document.css - styling
- cover.css - styling
- Shared material such as headers, footers, and stylesheets are in the ./DocumentDefinitions/Shared folder
- Make sure you have Docker
- Clone this repository
- Run
docker compose up
- Run
open html/index.html
to view the latest release and the work in progress (wip)
- Create a release branch:
git checkout -b release-vx-y-z
- Update the version number and release date in the change log in `./Content/Wijzigingsgeschiedenis.md``
- Update the version number in
docs/index.html
- Create a new release folder in ./docs:
mkdir docs/vx.y.z
- Run
VERSION=x.y.z docker compose up
to generate the documents - Commit the changes and push to GitHub:
git commit -a -m "Release vx.y.z"; git push
- Review and merge the branch on GitHub
- Tag the release and push the tag to GitHub:
git checkout master; git pull -p; git tag vx.y.z; git push --tags
Points of contact for the ICTU Kwaliteitsaanpak Softwareontwikkeling and this repository are Auke Bloembergen and Frank Niessink.