Fix: Hardcode credentials in check script

This commit is contained in:
2025-12-28 22:06:03 +11:00
parent f9d4ef612f
commit ec09d995aa

View File

@@ -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() {