54 lines
527 B
Plaintext
54 lines
527 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Python cache
|
|
.cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
|
|
# Database
|
|
*.db
|
|
*.db-journal
|
|
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
tests/__pycache__/
|
|
|
|
# Project specific
|
|
task_reporter.db
|
|
server.log
|
|
|
|
# Node.js / Frontend
|
|
node_modules/
|
|
frontend/dist/
|
|
frontend/.vite/
|
|
frontend/.cache/
|
|
.eslintcache
|
|
|
|
# Development scripts
|
|
.pids/
|
|
logs/
|
|
|
|
# Development documentation (AI/OpenSpec)
|
|
openspec/
|
|
AGENTS.md
|
|
CLAUDE.md
|
|
PROGRESS.md
|
|
.claude/
|