diff --git a/backend/endpoints/queue.py b/backend/endpoints/queue.py index 2eb6e34..7dc5e17 100644 --- a/backend/endpoints/queue.py +++ b/backend/endpoints/queue.py @@ -9,7 +9,7 @@ from typing import Optional queue_router = APIRouter(prefix="/queue") # Connessione MongoDB -client = MongoClient("mongodb://localhost:27017/") +client = MongoClient("mongodb://admin:password@localhost:27017/") db = client["simple_db"] queue_collection = db["queue"]