.gitignore 448 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Binaries
  2. bin/
  3. dist/
  4. build/
  5. *.exe
  6. *.exe~
  7. *.dll
  8. *.so
  9. *.dylib
  10. # Test binary, built with `go test -c`
  11. *.test
  12. # Output of the go coverage tool
  13. *.out
  14. # Go workspace
  15. go.work
  16. # IDE
  17. .idea/
  18. .vscode/
  19. *.swp
  20. *.swo
  21. *~
  22. # OS
  23. .DS_Store
  24. Thumbs.db
  25. # Database
  26. data/
  27. *.db
  28. *.sqlite
  29. # Logs
  30. *.log
  31. logs/
  32. # Frontend build artifact
  33. internal/web/html/
  34. # BLE relay build artifact (embedded into Go binary)
  35. cmd/monitor/ble_relay
  36. cmd/monitor/ble_relay.exe
  37. data/.venv/