Files
2026-04-26 23:06:06 -05:00

17 lines
539 B
TypeScript

import "dotenv/config";
const isBun = typeof Bun !== "undefined";
export const db = await (async () => {
if (isBun) {
const { SQL } = await import("bun");
const { drizzle } = await import("drizzle-orm/bun-sql");
return drizzle(new SQL(process.env.DATABASE_URL!));
} else {
const { default: postgres } = await import("postgres");
const { drizzle } = await import("drizzle-orm/postgres-js");
return drizzle(postgres(process.env.DATABASE_URL!));
}
})();
export * from "./schema";