fixing mounted app routes, fixing sql for prod

This commit is contained in:
Sam
2026-03-11 21:47:06 +00:00
parent 5001b8203d
commit 093007bc76
2 changed files with 9 additions and 4 deletions

View File

@@ -2,7 +2,6 @@
import postgres from 'postgres';
import 'dotenv/config'
console.log("url: ", process.env.LOCAL_DATABASE_URL)
const sql = postgres(process.env.LOCAL_DATABASE_URL);
const sql = postgres(process.env.DATABASE_URL);
export default sql;