12 lines
243 B
TypeScript
12 lines
243 B
TypeScript
import PocketBase from "pocketbase"
|
|
|
|
const pbClient = new PocketBase(Bun.env.PB_URL)
|
|
|
|
pbClient.autoCancellation(false)
|
|
|
|
await pbClient
|
|
.collection("_superusers")
|
|
.authWithPassword(Bun.env.PB_USER, Bun.env.PB_PASS)
|
|
|
|
export default pbClient
|