feat(phase-4a): backend skeleton, auth, health, tests

This commit is contained in:
CRM Bot
2026-06-03 20:52:01 +00:00
commit 955607f730
39 changed files with 2709 additions and 0 deletions
+65
View File
@@ -0,0 +1,65 @@
# Secrets and environment files
.env
.env.*
!.env.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/