Add pytest coverage output files to project-level .gitignore: - coverage.json - htmlcov/ - .pytest_cache/ These are generated artifacts from pytest-cov and should not be committed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
104 lines
1.2 KiB
Plaintext
104 lines
1.2 KiB
Plaintext
# tower-of-joy .gitignore
|
|
# Prevent committing sensitive or ephemeral files
|
|
|
|
# Docker volumes and data directories (created at runtime)
|
|
docker-data/
|
|
/mnt/media/
|
|
|
|
# Backups (too large for git)
|
|
backups/
|
|
*.backup
|
|
*.bak
|
|
|
|
# Environment files (may contain secrets)
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.tmp/
|
|
tmp/
|
|
|
|
# IDE/Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# OS files
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Secrets and credentials
|
|
secrets/
|
|
*.key
|
|
*.pem
|
|
*.crt
|
|
!example.crt
|
|
credentials.json
|
|
password.txt
|
|
.portainer-token
|
|
.test-update.sh
|
|
services/core-api/src/credentials.py
|
|
|
|
# Build artifacts (if any)
|
|
dist/
|
|
build/
|
|
*.o
|
|
*.pyc
|
|
__pycache__/
|
|
|
|
# Node modules (if using any Node tools)
|
|
node_modules/
|
|
|
|
# Python virtual environments (if any)
|
|
venv/
|
|
.venv/
|
|
env/
|
|
|
|
# Docker Compose overrides (local-only configs)
|
|
docker-compose.override.yml
|
|
|
|
# Local configuration (machine-specific)
|
|
local.yml
|
|
local.config
|
|
|
|
# Archive files
|
|
*.zip
|
|
*.tar
|
|
*.tar.gz
|
|
*.tgz
|
|
|
|
# Database dumps
|
|
*.sql
|
|
*.db
|
|
*.sqlite
|
|
!example.db
|
|
|
|
# Cache directories
|
|
.cache/
|
|
cache/
|
|
|
|
# Test output
|
|
coverage/
|
|
.coverage
|
|
coverage.json
|
|
htmlcov/
|
|
.pytest_cache/
|
|
test-results/
|
|
services/core-ai/tests/reports/
|
|
|
|
# Documentation builds
|
|
docs/_build/
|
|
site/
|
|
prompt-log.md
|
|
stacks/init-scripts/postgres-init.sh
|