.dockerignore 234 B

123456789101112131415161718192021222324252627
  1. # Build output
  2. bin/
  3. # SQLite database
  4. *.db
  5. *.db-shm
  6. *.db-wal
  7. # Editor / IDE
  8. .cursor/
  9. # Agent
  10. AGENT.md
  11. # Git
  12. .git/
  13. # Frontend dev artifacts
  14. frontend/node_modules/
  15. frontend/dist/
  16. # Go test cache
  17. **/*_test.go
  18. # Misc
  19. *.md
  20. justfile