mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-22 10:15:31 -04:00
7f571d36ea
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
import { defineConfig } from "drizzle-kit"
|
|
|
|
export default defineConfig({
|
|
dialect: "sqlite",
|
|
schema: ["./src/**/*.sql.ts", "./src/**/sql.ts"],
|
|
out: "./migration",
|
|
dbCredentials: {
|
|
url: "/home/thdxr/.local/share/opencode/opencode.db",
|
|
},
|
|
})
|