@authai-io/relay-store-sqlite
v0.1.0
Published
SQLite storage driver for the AuthAI relay. Single-file persistence for self-hosted single-instance deploys.
Downloads
30
Readme
@authai-io/relay-store-sqlite
SQLite storage driver for the AuthAI relay. Single-file persistence — good for self-hosted single-instance deploys.
Use
import { createRelayApp } from "@authai-io/relay";
import { createSqliteStore } from "@authai-io/relay-store-sqlite";
const store = createSqliteStore("./relay.db");
const app = createRelayApp({ store, /* ... */ });For multi-instance / cloud deploys, use @authai-io/relay-store-postgres.
See docs/installation.md for the full self-hosting walk-through.
