Files
gravl/.gitignore
clawd fac53a3605 chore: add dist and build artifacts to .gitignore
- Exclude frontend/dist/ (build output)
- Exclude .py files (script templates)
- Exclude PY temp files
2026-03-02 09:25:10 +01:00

64 lines
640 B
Plaintext

# Dependencies
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Build & dist
dist/
build/
*.bundle.js
*.bundle.css
# Environment
.env
.env.local
.env.*.local
.env.production.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# OS
Thumbs.db
.DS_Store
# Logs
*.log
logs/
# Test coverage
.coverage/
coverage/
# Python
*.pyc
__pycache__/
*.py~
# Staging
/tmp/
/staging-*/
# Planning & Documentation (kept locally, not in repo)
.planning/
TODO.md
./frontend/.planning/
./frontend/tasks/
./docs/plans/
.claude/settings.local.json
# Build output & dist
dist/
build/
frontend/dist/
# Build artifacts & temp files
*.py
PY