From 30d72f625dcf3a74d20bac0f25c9baaab0137e38 Mon Sep 17 00:00:00 2001 From: Daniel Volz Date: Tue, 20 Jan 2026 19:32:35 +0100 Subject: [PATCH] chore: unify data folder and update AI instructions (#58) - Use single ./data folder for both dev and prod (removes ./backend/data) - Update docker-compose.dev.yml to use ./data:/app/data - Remove backend/data/ from .gitignore (only data/ needed) - Add 'NEVER create PRs without permission' rule to copilot-instructions.md --- .github/copilot-instructions.md | 1 + .gitignore | 1 - docker-compose.dev.yml | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index f3fb8d0..ef391b0 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -4,6 +4,7 @@ - **English is the primary language**: All code, comments, documentation, commit messages, PR descriptions, and GitHub releases MUST be written in English. The user may communicate in German, but all project artifacts must be in English. - **NEVER release without explicit permission**: Do NOT create tags, releases, or version bumps unless the user explicitly asks for it. Always wait for explicit confirmation before any release action. +- **NEVER create PRs without explicit permission**: Do NOT create Pull Requests, push branches, or merge code unless the user explicitly asks for it. Always present changes and wait for the user to confirm before any git operations that affect the remote repository. - **No temporary files**: Delete temporary scripts/files immediately after use. Do not commit temporary debug scripts, test files, or one-off utilities to the repository. - **Clean workspace**: Always clean up after yourself. If you create a file for a specific task, delete it once done. diff --git a/.gitignore b/.gitignore index 9745833..50dc15b 100644 --- a/.gitignore +++ b/.gitignore @@ -34,7 +34,6 @@ coverage/ *.db-journal *.db-wal *.db-shm -backend/data/ data/ # =================== diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml index 29f39f7..4623e19 100644 --- a/docker-compose.dev.yml +++ b/docker-compose.dev.yml @@ -6,7 +6,7 @@ services: volumes: - ./backend:/app - backend_node_modules:/app/node_modules - - ./backend/data:/app/data + - ./data:/app/data env_file: - .env ports: