From 48167530fd32932ad34abde4264e82cb5f0b84f7 Mon Sep 17 00:00:00 2001 From: Primakov Alexandr Alexandrovich Date: Thu, 8 May 2025 15:43:11 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BB=D0=BE=D0=B3=D0=B8=D1=80=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F=20mongoUrl=20=D0=B2=20=D1=83?= =?UTF-8?q?=D1=82=D0=B8=D0=BB=D0=B8=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Добавлены консольные логи для переменной mongoUrl в файле const.ts для упрощения отладки подключения к MongoDB. --- server/utils/const.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/utils/const.ts b/server/utils/const.ts index 5d19080..07c5175 100644 --- a/server/utils/const.ts +++ b/server/utils/const.ts @@ -2,3 +2,7 @@ import 'dotenv/config'; // Connection URL export const mongoUrl = process.env.MONGO_ADDR + +console.log('=======================================================') +console.log('mongoUrl', mongoUrl) +console.log('=======================================================')