From 40fd6339178a3a129045817b7e351d8910154e41 Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Mon, 17 Aug 2026 20:42:56 +0200 Subject: [PATCH] =?UTF-8?q?fix(deploy):=20.gitignore=20=E2=80=94=20anchor?= =?UTF-8?q?=20all=20dir=20patterns=20to=20root=20(/logs/,=20/data/,=20/bui?= =?UTF-8?q?ld/,=20/dist/,=20/venv/,=20/env/,=20/htmlcov/)=20to=20prevent?= =?UTF-8?q?=20recursive=20ignore=20of=20frontend=20source=20dirs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 40 +++++++--------------------------------- 1 file changed, 7 insertions(+), 33 deletions(-) diff --git a/.gitignore b/.gitignore index ce12f4c..ad658d7 100644 --- a/.gitignore +++ b/.gitignore @@ -11,21 +11,21 @@ __pycache__/ *.so *.egg-info/ .eggs/ -build/ -dist/ +/build/ +/dist/ *.egg # Virtual environments .venv/ -venv/ -env/ -ENV/ +/venv/ +/env/ +/ENV/ # Test and coverage .pytest_cache/ .coverage .coverage.* -htmlcov/ +/htmlcov/ coverage.xml .mypy_cache/ @@ -52,41 +52,15 @@ Thumbs.db /logs/ .ruff_cache/ -# Redis dumps -dump.rdb -*.rdb - # Database files *.db *.db-journal *.db-wal *.db-shm -data/ - -# IDE -.vscode/ -.idea/ -*.swp -*.swo -*~ -.DS_Store - -# Logs -*.log -/logs/ +/data/ # Alembic (autogenerated migrations excluded, but keep 0001) alembic/versions/__pycache__/ -# Frontend build artifacts -frontend/node_modules/ -frontend/dist/ - # Docker .docker-data/ - -# Test artifacts -.pytest_cache/ -.coverage -.coverage.* -htmlcov/