mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-14 23:21:19 +00:00
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { defineConfig } from "drizzle-kit"
|
|
|
|
export default defineConfig({
|
|
out: "./drizzle",
|
|
schema: "./src/schema.ts",
|
|
dialect: "sqlite",
|
|
dbCredentials: {
|
|
url: process.env.BENCHMARKS_DB_PATH!,
|
|
},
|
|
})
|