source: database/drizzle/db.ts@ 4ceb725

main
Last change on this file since 4ceb725 was 5750945, checked in by Tome <gjorgievtome@…>, 7 months ago

Dockerize app

  • Property mode set to 100644
File size: 273 bytes
Line 
1import { Pool } from "pg";
2import { drizzle } from "drizzle-orm/node-postgres";
3import * as schema from "./schema";
4
5const pool = new Pool({
6 connectionString: process.env.DATABASE_URL,
7})
8
9export const db = drizzle(pool, { schema });
10
11export type Database = typeof db;
Note: See TracBrowser for help on using the repository browser.