Files
the-other-dude/.gitignore
Jason Staack f0ddd98b93 feat(map): self-hosted PMTiles map tiles, remove alert toast spam
- Replace OpenStreetMap CDN with self-hosted Protomaps PMTiles
  (Wisconsin + Florida regional extracts, served from nginx)
- Add protomaps-leaflet for vector tile rendering in dark theme
- Update CSP to remove openstreetmap.org, add blob: for vector workers
- Add nginx location block for /tiles/ with byte range support
- Mount tiles directory as volume (not baked into image)
- Remove alert_fired/alert_resolved toast notifications that spammed
  "undefined" at fleet scale — dashboard still updates via query invalidation
- Add *.pmtiles to .gitignore (large binaries)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-19 18:30:08 -05:00

57 lines
737 B
Plaintext

# Environment files with secrets
.env
.env.prod
.env.local
.env.*.local
# Docker data
docker-data/
# Python
__pycache__/
*.pyc
*.pyo
.pytest_cache/
.coverage
htmlcov/
# Node
node_modules/
# IDE
.idea/
.vscode/
*.swp
*.swo
# Build caches
.go-cache/
.npm-cache/
.tmp/
# Git worktrees
.worktrees/
# OS
.DS_Store
Thumbs.db
# Playwright MCP logs
.playwright-mcp/
# Helm local overrides (contain dev credentials)
infrastructure/helm/values-local.yaml
# Local-only planning and design docs
.planning/
.superpowers/
docs/superpowers/
docs/comparison-*.md
# Local dev tools (mock servers, screenshot automation)
tools/dev/
# PMTiles map data (large binaries, downloaded per-region)
frontend/public/tiles/*.pmtiles
fleet-dashboard.png