From 8c75d28ee660756f470138a0a09333dcbeddf4ae Mon Sep 17 00:00:00 2001 From: "anatoly.shipitz" Date: Mon, 2 Jun 2025 19:11:18 +0200 Subject: [PATCH] chore: Update .env.test file with MongoDB and Slack configurations - Added MongoDB connection details including host, user, password, and database name. - Included Slack token and report channel ID for integration purposes. These changes enhance the environment configuration for testing and integration with MongoDB and Slack. --- workers/main/.env.test | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/workers/main/.env.test b/workers/main/.env.test index 5d61dd0..5ae1edf 100644 --- a/workers/main/.env.test +++ b/workers/main/.env.test @@ -2,3 +2,11 @@ REDMINE_DB_HOST=localhost REDMINE_DB_USER=testuser REDMINE_DB_PASSWORD=testpassword REDMINE_DB_NAME=testdb + +MONGO_DB_HOST=mongo1:31000 +MONGO_DB_USER=testuser +MONGO_DB_PASSWORD=testpassword +MONGO_DB_NAME=testdb + +SLACK_TOKEN=test-token +SLACK_FIN_REPORT_CHANNEL_ID=C02URP5L3U5 \ No newline at end of file