651b48658c
Merge origin/main into feature branch, resolving 3 conflicts: - app/api/__init__.py: add classification_rules_router alongside new routers from main (audit_logs, i18n, mobile, compliance, translation) - app/models.py: keep ClassificationRuleModel alongside new models from main (MobileDevice, ComplianceTemplate, PipelineRoutingRule) - tests/conftest.py: import both ClassificationRuleModel and new models from main (AuditLog, ComplianceTemplate) Also renumber migration from 027 to 037 to chain from the latest migration on main (036_add_document_translation_fields). Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
92 lines
3.7 KiB
Plaintext
92 lines
3.7 KiB
Plaintext
# =============================================================================
|
|
# Docker build context exclusions
|
|
# Reducing the build context speeds up builds and prevents unnecessary cache
|
|
# invalidation when unrelated files change.
|
|
# =============================================================================
|
|
|
|
# ── Version control ──────────────────────────────────────────────────────────
|
|
.git
|
|
|
|
# ── GitHub / CI tooling ──────────────────────────────────────────────────────
|
|
.github
|
|
|
|
# ── IDE / local dev ──────────────────────────────────────────────────────────
|
|
.vscode
|
|
.jules
|
|
|
|
# ── Pre-commit / linting config (not needed at runtime) ──────────────────────
|
|
.pre-commit-config.yaml
|
|
pyproject.toml
|
|
codecov.yml
|
|
crowdin.yml
|
|
|
|
# ── Test suite ───────────────────────────────────────────────────────────────
|
|
tests/
|
|
requirements-dev.txt
|
|
coverage.json
|
|
COVERAGE_REPORT.md
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
junit.xml
|
|
coverage.xml
|
|
|
|
# ── Mobile app / browser extension / legacy placeholder ─────────────────────
|
|
# backend/ is an empty placeholder directory not part of the Python application
|
|
mobile/
|
|
browser-extension/
|
|
backend/
|
|
|
|
# ── Helm charts ──────────────────────────────────────────────────────────────
|
|
helm/
|
|
|
|
# ── Scripts (run before Docker build, output files are COPYd separately) ─────
|
|
scripts/
|
|
|
|
# ── Benchmark and one-off utility scripts ────────────────────────────────────
|
|
benchmark_*.py
|
|
fix_test*.py
|
|
run_fast_tests.sh
|
|
|
|
# ── Root-level Markdown files (docs/ is kept for docs-builder stage) ─────────
|
|
# Note: *.md only matches files at the root level, not inside subdirectories
|
|
*.md
|
|
|
|
# ── Python bytecode / compiled artifacts ─────────────────────────────────────
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
|
|
# ── Virtual environments ──────────────────────────────────────────────────────
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# ── Environment / secret files ───────────────────────────────────────────────
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# ── Runtime state files ───────────────────────────────────────────────────────
|
|
*.log
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
# ── Build artifacts ───────────────────────────────────────────────────────────
|
|
build/
|
|
dist/
|
|
.cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
site/
|
|
docs_build/
|
|
|
|
# ── Editor temp files ─────────────────────────────────────────────────────────
|
|
*.swp
|
|
*.swo
|
|
*~
|