We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650796b commit 39cee7cCopy full SHA for 39cee7c
packages/db/src/client.ts
@@ -6,7 +6,7 @@ import * as schema from "./drizzle/schema";
6
7
const fullSchema = { ...schema, ...relations };
8
9
-const databaseUrl = "postgres://databuddy:databuddy_dev_password@localhost:5432/databuddy";
+const databaseUrl = process.env.DATABASE_URL as string;
10
11
if (!databaseUrl) {
12
throw new Error("DATABASE_URL is not set");
0 commit comments