Skip to content
Snippets Groups Projects
knexfile.ts 148 B
import type { Knex } from "knex";

const config: Knex.Config = {
  client: "pg",
  connection: process.env.DATABASE_URL,
};

export default config;