mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
12 lines
286 B
TypeScript
12 lines
286 B
TypeScript
import "dotenv/config"
|
|
import { defineConfig } from "drizzle-kit"
|
|
|
|
export default defineConfig({
|
|
dialect: "mysql",
|
|
schema: "./src/db/schema.ts",
|
|
out: "./drizzle",
|
|
dbCredentials: {
|
|
url: process.env.DATABASE_URL || "mysql://root:password@localhost:3306/openwork_den",
|
|
},
|
|
})
|