58 lines
705 B
Plaintext
58 lines
705 B
Plaintext
# Operating systems and editors
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Python environments and caches
|
|
**/.venv/
|
|
**/venv/
|
|
**/__pycache__/
|
|
**/.pytest_cache/
|
|
**/.mypy_cache/
|
|
**/.ruff_cache/
|
|
**/*.egg-info/
|
|
*.py[cod]
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# JavaScript dependencies and build output
|
|
**/node_modules/
|
|
**/.next/
|
|
**/out/
|
|
**/.turbo/
|
|
|
|
# FlashOps local runtime data
|
|
flashops/var/
|
|
*.db
|
|
*.db-journal
|
|
*.db-shm
|
|
*.db-wal
|
|
*.log
|
|
agent-state.json
|
|
|
|
# Secrets and machine-local configuration
|
|
**/.env
|
|
**/.env.*
|
|
!**/.env.example
|
|
!**/env.example
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
*.local.md
|
|
*.env.local
|
|
credentials.json
|
|
secrets.json
|
|
|
|
# Temporary release and backup artifacts
|
|
*.tmp
|
|
*.bak
|
|
*.tar
|
|
*.tar.gz
|
|
*.zip
|
|
*_backup/
|
|
*_rollback/
|