Skip to content
Snippets Groups Projects
db.ts 188 B
import knex from "knex";

export const connection = knex({
  client: "sqlite3", // or 'better-sqlite3'
  connection: {
    filename: "./dev.sqlite3",
    // filename: ":memory:",
  },
});