mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2025-12-13 01:24:44 -05:00
- Updated database connection to support Turso auth token - Added vercel.json with bun build configuration - Updated environment schema for production deployment - Added new features and components for production readiness
14 lines
295 B
TypeScript
14 lines
295 B
TypeScript
import { type Config } from "drizzle-kit";
|
|
|
|
import { env } from "~/env";
|
|
|
|
export default {
|
|
schema: "./src/server/db/schema.ts",
|
|
dialect: "sqlite",
|
|
dbCredentials: {
|
|
url: env.DATABASE_URL,
|
|
authToken: env.DATABASE_AUTH_TOKEN,
|
|
},
|
|
tablesFilter: ["beenvoice_*"],
|
|
} satisfies Config;
|