Files
gyanBuddy/database/postgre.js
T
Gitea 41d82f9266
Deploy Node App / deploy (push) Successful in 25s
structure ready
2026-06-15 15:43:09 +05:30

11 lines
189 B
JavaScript

const { Pool } = require('pg');
const pool = new Pool({
host: '172.237.38.45',
port: 5432,
user: 'bunty',
password: 'Bun@12345',
database: 'gyanbuddy'
});
module.exports = pool;