From d17c78f42a077910b4c042863968c1ef787c0c1f Mon Sep 17 00:00:00 2001 From: Giuseppe Raffa <77052701+sesee3@users.noreply.github.com> Date: Tue, 14 Apr 2026 17:59:53 +0200 Subject: [PATCH] fix: correct database password environment variable reference --- realtime/src/store/db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/realtime/src/store/db.js b/realtime/src/store/db.js index a13c5a9..4d05bdf 100644 --- a/realtime/src/store/db.js +++ b/realtime/src/store/db.js @@ -2,7 +2,7 @@ const { Pool } = require('pg'); const pool = new Pool({ user: process.env.DB_USER, - password: `${process.env.DB_PASSWORD}`, + password: process.env.DB_PSW, host: process.env.DB_HOST, port: process.env.DB_PORT, max: 10,