Fix database export and admin page structure

This commit is contained in:
2026-06-28 06:29:04 -05:00
parent 52f6668f02
commit 6b13a35fbe
3 changed files with 706 additions and 783 deletions
+3
View File
@@ -0,0 +1,3 @@
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/la_huasca
JWT_SECRET=your-jwt-secret-here
NEXT_PUBLIC_SITE_NAME=Hotel La Huasca
+754 -836
View File
File diff suppressed because it is too large Load Diff
+2
View File
@@ -34,3 +34,5 @@ export async function query(text: string, params?: unknown[]) {
const result = await db.query(text, params); const result = await db.query(text, params);
return result; return result;
} }
export { db };