Final cleanup: Update remaining comments and variable names

Changes:
- Update comments: "Bookmann UUID" → "Bookhoard UUID"
- Rename sidecar struct field: Bookmann → Bookhoard
- Update type names: SidecarBookmannConfig → SidecarBookhoardConfig
- Fix test database name in queue_test.go
- Fix uppercase env var examples in KOBO_SETUP.md

Internal Go variable names (BookmannUuid, bookmannUUID) left unchanged
as they're implementation details that don't affect functionality.

Part of project rename to Bookhoard.
This commit is contained in:
2026-02-01 16:24:58 -05:00
parent 6d9b36be82
commit 5b9f21a592
8 changed files with 20 additions and 20 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ func TestPriorityConstants(t *testing.T) {
func setupTestDB(t *testing.T) *database.Queries {
ctx := context.Background()
dbURL := "postgresql://postgres:postgres@localhost:5432/bookmann?sslmode=disable"
dbURL := "postgresql://postgres:postgres@localhost:5432/bookhoard?sslmode=disable"
dbPool, err := pgxpool.New(ctx, dbURL)
require.NoError(t, err, "Failed to connect to test database")