From ec09d995aa941113bc73508c208ea5be401626cb Mon Sep 17 00:00:00 2001 From: DeNNiiInc Date: Sun, 28 Dec 2025 22:06:03 +1100 Subject: [PATCH] Fix: Hardcode credentials in check script --- check_data.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/check_data.js b/check_data.js index 2860fc0..691d356 100644 --- a/check_data.js +++ b/check_data.js @@ -1,6 +1,8 @@ const { Pool } = require('pg'); const config = require('./lib/db-config'); - +// Force localhost for server-side check +config.host = 'localhost'; +config.password = 'X@gon2005!#$'; // Ensure password is explicit just in case const pool = new Pool(config); async function checkData() {