feat: add MONGO_URI to environment variable setup in build workflow
Chore App Build, Test, and Push Docker Images / build-and-push (push) Failing after 2m22s

This commit is contained in:
2026-07-30 00:21:12 -04:00
parent 7e71446cc7
commit 0f903f57bb
3 changed files with 2 additions and 2 deletions
-2
View File
@@ -22,8 +22,6 @@ _mongo_client = None
def _create_mongo_client():
"""Build a fail-fast MongoClient from environment variables."""
uri = os.environ.get('MONGO_URI')
#log the MONGO_URI for debugging purposes, I will change it later so it doesn't log the password
print(f"Using MONGO_URI: {uri}")
if not uri: