austinried 3408a3988e music source and client for subsonic
test fixture setup for navidrome
2025-11-02 10:35:22 +09:00

19 lines
405 B
TypeScript
Executable File

#!/usr/bin/env -S deno --allow-all
async function setupNavidrome() {
console.log("setting up navidrome...");
await fetch("http://navidrome:4533/auth/createAdmin", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
username: "admin",
password: "password",
}),
});
}
await setupNavidrome();
console.log("setup-servers complete");