Update legal files and build configuration: Bookmann → Bookhoard

Root level changes:
- LICENSE: Update copyright notice to Bookhoard
- .gitignore: Update build artifact patterns
- package.json: Update package name to bookhoard
- TROUBLESHOOTING.md: Update all references and examples
- README.md: Update database connection examples

Part of project rename to Bookhoard.
This commit is contained in:
2026-02-01 16:20:49 -05:00
parent 4e1feca124
commit 547bc6f8f8
5 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ The first user who registers automatically becomes an admin. For additional admi
```sql
-- Connect to database
docker exec -it bookmann_db psql -U postgres -d bookmann
docker exec -it bookhoard_db psql -U postgres -d bookhoard
-- Promote user to admin
UPDATE users SET role = 'admin' WHERE email = 'user@example.com';