The documents in this repository are published to https://gigcymru.github.io/dhcw-software-engineering-handbook/".
When you're building software, especially in healthcare, good guidance really matters. It helps everyone work in a consistent way, so the code is easier to understand, safer, and more reliable.
A handbook brings together all the important know-how: how to write clear, secure code; how to manage changes properly; how to work well across teams; and how to meet the expectations of modern software development.
It's there to help you make good decisions, avoid mistakes, and deliver software that others can trust and build on.
There are several ways to set up your development environment:
The fastest way to start contributing:
This provides:
- A pre-configured VS Code environment (with useful extensions installed)
- All required dependencies installed
- Automatic port forwarding for preview
- Git integration
Once you have successfully launched Codespaces you can run the development server from the VS Code Terminal:
just runYou will be prompted to Open in Browser to view the locally running site.
All dependencies are automatically installed during container creation. Use just --list
to discover all available commands.
See the Quickstart Guide for more information.
Note: It can take a few minutes to fully launch Codespaces the first time, but is faster on subsequent launches as the environment is then cached.
Prerequisites:
- Python 3.13 or higher
- uv for package/env management
- Git
Setup Steps:
Clone the repository:
git clone https://github.com/GIGCymru/dhcw-software-engineering-handbook.git
cd dhcw-software-engineering-handbookInstall uv (if not already installed):
curl -LsSf https://astral.sh/uv/install.sh | shSet up environment and dependencies:
uv syncInstall the npm dependencies that provide the CLI tools used for spell checking and markdown linting:
npm installStart the development server:
uv run zensical serveView the documentation at: http://127.0.0.1:8000/
If you prefer using containers:
Prerequisites:
Setup Steps:
Build the container:
podman build --tag zensical .Run the development server:
podman run -p 8000:8000 zensicalView the documentation at: http://127.0.0.1:8000/
For those who prefer command runners, this project uses Just:
Installation:
# macOS
brew install just
# Linux
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin
# Windows (via cargo)
cargo install just
# See https://github.com/casey/just#installation for more optionsUsage:
# See all available commands
just --list
# Full build and serve
just
# Quick start development server
just runView the documentation at: http://127.0.0.1:8000/
Our documentation is built using Zensical, a modern static site generator built by the creators of Material for MkDocs.
- Choose your preferred development environment from above
- Create a new branch for your changes
- Make your changes
- Test your changes locally
- Submit a Pull Request
This repository is licensed under the MIT Licence