From e3b9a0084b2bd4467bae130e31a62d03add3a2f5 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Fri, 10 Apr 2026 19:35:28 -0400 Subject: [PATCH] feat(testing): add Bruno script for automated database setup Add NewDB.sh script that automates the initial database setup process by running sequential API calls through Bruno CLI to register a user, create a library, add a library folder, and scan media items. --- bruno/NewDB.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 bruno/NewDB.sh diff --git a/bruno/NewDB.sh b/bruno/NewDB.sh new file mode 100755 index 0000000..0f671fa --- /dev/null +++ b/bruno/NewDB.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +bru run --env Bookhoard --delay 500 "user/auth/Register User.yml" "library/Create Library.yml" "library/Add Library Folder.yml" "scanner/Scan Media Items.yml"