From 83b7f14778139f4304b12579f3638c05f9ecdf1b Mon Sep 17 00:00:00 2001 From: Kerboul Date: Tue, 11 Feb 2025 18:19:02 +0100 Subject: [PATCH] =?UTF-8?q?Modification=20de=20la=20configuration=20de=20c?= =?UTF-8?q?onnexion=20=C3=A0=20la=20base=20de=20donn=C3=A9es=20pour=20pass?= =?UTF-8?q?er=20en=20mode=20production?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.js b/db.js index e1c46a7..04bfb08 100644 --- a/db.js +++ b/db.js @@ -1,6 +1,6 @@ const { Client } = require('pg'); -const local = true; +const local = false; // Connexion à la base de données PostgreSQL const client = new Client({ host: local ? 'mikoshi' : '172.30.0.2',