three60/drizzle.config.ts
2024-12-13 08:36:38 +01:00

14 lines
No EOL
335 B
TypeScript

import { defineConfig } from 'drizzle-kit';
export default defineConfig({
out: './drizzle',
schema: './src/db/schema.ts',
dialect: 'mysql',
dbCredentials: {
host: "localhost",
port: 3306,
user: "root",
password: process.env.MARIADB_ROOT_PASSWORD,
database: "three60",
},
});