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
+59
View File
@@ -0,0 +1,59 @@
# Secrets - NEVER copy to image
.env
.env.*
!.env.example
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
# Virtual environments
.venv/
venv/
env/
# Test artifacts
.pytest_cache/
.coverage
.coverage.*
htmlcov/
coverage.xml
.mypy_cache/
.ruff_cache/
# Database
*.db
*.db-journal
*.db-wal
data/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Logs
*.log
logs/
# Git
.git/
.gitignore
.gitattributes
# Documentation (not needed in image)
docs/
*.md
!README.md
# Docker files themselves
Dockerfile*
docker-compose*.yml
.dockerignore
# Test directory (not needed in production image)
tests/