From e4b42696b78c127e8332b0e49b44e85b827d980f Mon Sep 17 00:00:00 2001 From: Jakob Frey <77552796+jkb018@users.noreply.github.com> Date: Tue, 4 Nov 2025 13:15:10 +0100 Subject: [PATCH 1/2] Update README with .env setup instructions Added instructions for setting up the .env file. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a9b61a6..5fb6ff9 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,7 @@ The HSRTReport class is a customized LaTeX document class based on KOMA-Script's ### Option 1: Docker (Recommended) +- **ENV**: Copy the `.env.example` and rename it to `.env` - **Docker**: [Install Docker](https://docs.docker.com/get-docker/) - **Docker Compose**: Supports both variants: - `docker-compose` (standalone tool) From 2cde8a890a528f1af9446a14fc84d2d05c689fcb Mon Sep 17 00:00:00 2001 From: Jakob Frey <77552796+jkb018@users.noreply.github.com> Date: Tue, 4 Nov 2025 13:16:38 +0100 Subject: [PATCH 2/2] Ignore environment file in .gitignore Add .env to .gitignore to ignore environment files --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index f83cd8c..84e87ae 100644 --- a/.gitignore +++ b/.gitignore @@ -40,3 +40,6 @@ Output/ svg-inkscape/ .config/ .cache/ + +# Ignore environment file +.env