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