Updated .gitignore, .dockerignore, and .codecov.yml to properly exclude: - Python artifacts (__pycache__, .venv, coverage) - Node artifacts (node_modules, dist, coverage, .vite) - Go artifacts (*.out, coverage files) - Database files (*.db, *.sqlite) - IDE files (.vscode, .idea) - Build artifacts and temporary files - Documentation and scripts from Docker context - Test files from codecov analysis
61 lines
583 B
Plaintext
61 lines
583 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.pytest_cache/
|
|
.coverage
|
|
*.cover
|
|
.hypothesis/
|
|
htmlcov/
|
|
|
|
# Node/Frontend
|
|
frontend/node_modules/
|
|
frontend/dist/
|
|
frontend/coverage/
|
|
frontend/.vite/
|
|
frontend/*.tsbuildinfo
|
|
|
|
# Go/Backend
|
|
backend/api
|
|
backend/*.out
|
|
backend/coverage.*.out
|
|
|
|
# Databases
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
backend/data/*.db
|
|
backend/cmd/api/data/*.db
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# OS
|
|
Thumbs.db
|
|
|
|
# Caddy
|
|
backend/data/caddy/
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|