all repos — stealth-developers @ 779bba63ca68bbc92e8fec8f2917a58d420f7697

pkgs/db/drizzle.config.ts (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
import { defineConfig } from "drizzle-kit";
import config from "@stealth-developers/config";

export default defineConfig({
  out: "./drizzle",
  schema: "./src/schemas/index.ts",
  dialect: "turso",
  dbCredentials: {
    url: config.db.url,
    authToken: config.db.auth,
  },
});