chore: remove db credentials from tracking and add template file

This commit is contained in:
2025-12-28 23:04:08 +11:00
parent fc16340c25
commit 64bdc868b2
4 changed files with 17 additions and 10 deletions

View File

@@ -1,8 +1,5 @@
const { Pool } = require('pg');
const config = require('./lib/db-config');
// Force localhost for server-side check
config.host = 'localhost';
config.password = 'WebPerfTest2025'; // Ensure password is explicit just in case
const pool = new Pool(config);
async function checkData() {