gameflow-deck/drizzle.config.ts
Simeon Radivoev f15bf9a1e0
feat: Implemented launching and downloading of roms
This is just an initial implementation lots of kings to iron out
2026-02-19 16:10:29 +02:00

11 lines
No EOL
243 B
TypeScript

import 'dotenv/config';
import { defineConfig } from 'drizzle-kit';
export default defineConfig({
out: './drizzle',
schema: './src/bun/api/schema/app.ts',
dialect: 'sqlite',
dbCredentials: {
url: "./games.db"
}
});