From 3d75592a57d3fe22d0f1125d296df02d28909093 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Wed, 3 Jun 2026 23:52:00 +0000 Subject: [PATCH] Upload .gitignore --- .gitignore | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..103d536 --- /dev/null +++ b/.gitignore @@ -0,0 +1,66 @@ +# Secrets and environment files +.env +.env.* +!.env.example +!.env.docker.example + +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +*.egg-info/ +.eggs/ +build/ +dist/ +*.egg + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ + +# Test and coverage +.pytest_cache/ +.coverage +.coverage.* +htmlcov/ +coverage.xml +.mypy_cache/ +.ruff_cache/ + +# Database files +*.db +*.db-journal +*.db-wal +*.db-shm +data/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# Logs +*.log +logs/ + +# Alembic (autogenerated migrations excluded, but keep 0001) +alembic/versions/__pycache__/ + +# Frontend build artifacts (Phase 4c) +webui/node_modules/ +webui/dist/ + +# Docker +.docker-data/ + +# Test artifacts +.pytest_cache/ +.coverage +.coverage.* +htmlcov/