- Gitea (postgres-backed) on ports 3000/2222 - Exclude .claude/ dir and *.db from git - Update CLAUDE.md with Gitea remote info
51 lines
468 B
Plaintext
51 lines
468 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
*.egg
|
|
.venv/
|
|
venv/
|
|
.pytest_cache/
|
|
.ruff_cache/
|
|
.mypy_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Node
|
|
node_modules/
|
|
frontend/dist/
|
|
.pnpm-store/
|
|
|
|
# IDE
|
|
.vscode/settings.json
|
|
.idea/
|
|
|
|
# Claude Code local config (per-machine, not for repo)
|
|
.claude/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets
|
|
.env
|
|
*.key
|
|
*.pem
|
|
|
|
# Runtime data (token store, etc.)
|
|
backend/data/
|
|
|
|
# Database
|
|
*.db
|
|
/pgdata/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Docker
|
|
.dockerignore
|