mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 22:26:19 +00:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
|
import type { Config } from "drizzle-kit";
|
||
|
|
||
|
export default {
|
||
|
schema: "./schema.ts",
|
||
|
out: "./drizzle",
|
||
|
driver: "better-sqlite",
|
||
|
dbCredentials: {
|
||
|
url: "../scraper/sqlite.db",
|
||
|
},
|
||
|
} satisfies Config;
|