mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-28 19:11:03 +08:00
11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
import { defineConfig } from "drizzle-kit"
|
|
|
|
export default defineConfig({
|
|
dialect: "sqlite",
|
|
schema: "./src/**/*.sql.ts",
|
|
out: "./migration",
|
|
dbCredentials: {
|
|
url: "/home/thdxr/.local/share/opencode/kilo.db",
|
|
},
|
|
})
|