Initial commit.

This commit is contained in:
2025-05-27 16:29:14 -07:00
commit 4f44d5edca
29 changed files with 5230 additions and 0 deletions

9
src/lib/pocketbase.ts Normal file
View File

@@ -0,0 +1,9 @@
/**
* Initializes and exports a singleton PocketBase instance for use throughout the app.
*
* Throws if the PocketBase URL is invalid.
*/
import PocketBase from "pocketbase";
import { POCKETBASE_URL } from "@/config";
export const pb = new PocketBase(POCKETBASE_URL);