Files
drt/.gitignore
DevOps Team f5b190c91d Remove investigation feature completely
- Delete investigation CLI command and related services
- Remove investigation data models and report generators
- Clean up configuration options and documentation
- Update gitignore and remove stale egg-info

Investigation feature is no longer needed and has been fully removed.
Backup preserved in git tag 'pre-investigation-removal'.
2026-02-11 20:40:43 +07:00

98 lines
1.1 KiB
Plaintext

# Security: Sensitive Files and Credentials
# Add these patterns to your .gitignore to prevent accidental commits of sensitive data
# Environment variables
.env
.env.local
.env.*.local
# Configuration files with credentials
config.*.yaml
!config.example.yaml
!config.quickstart.yaml
!config.test.yaml
# Logs (may contain sensitive information)
logs/
*.log
# Reports and analysis output
reports/
analysis/
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual environments
venv/
ENV/
env/
# Testing
.pytest_cache/
.coverage
htmlcov/
# OS
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.bak
*.backup
*~
# Database files
*.db
*.sqlite
*.sqlite3
# Docker
.dockerignore
docker-compose.override.yml
# Credentials and secrets (CRITICAL)
**/secrets/
**/credentials/
**/.aws/
**/.azure/
**/.gcp/
**/private_key*
**/secret_key*
**/api_key*
**/token*
**/password*
# Configuration with real values
config.prod.yaml
config.production.yaml
config.live.yaml