Co-authored-by: Github Action <action@github.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Brendan Allan <git@brendonovich.dev>
11 lines
233 B
TypeScript
11 lines
233 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/opencode.db",
|
|
},
|
|
})
|