Files
Timmy-time-dashboard/.gitignore
Claude 3adc18c208 chore: gitignore src/data/ (test runtime artifacts)
Test runs generate src/data/swarm.db and src/data/self_modify_reports/
which should not be tracked.

https://claude.ai/code/session_01JNjWfHqusjT3aiN4vvYgUk
2026-02-26 22:09:04 +00:00

58 lines
686 B
Plaintext

# Python
__pycache__/
*.py[cod]
*.pyo
.Python
build/
dist/
*.egg-info/
.eggs/
# Virtual envs
.venv/
venv/
env/
# Secrets / local config — commit only .env.example (the template)
.env
.env.*
!.env.example
# SQLite memory — never commit agent memory
*.db
# Runtime PID files
.watchdog.pid
# Chat platform state files (contain bot tokens)
telegram_state.json
discord_state.json
# Testing
.pytest_cache/
.coverage
coverage.xml
htmlcov/
reports/
# Self-modify reports (auto-generated)
data/self_modify_reports/
src/data/
# Handoff context (session-scoped)
.handoff/
# IDE
.idea/
.vscode/
*.swp
*.swo
.claude/
# macOS
.DS_Store
.AppleDouble
.LSOverride
.Spotlight-V100
.Trashes