From f648d028ab601db321a94831b93b86e4c7b4a5f1 Mon Sep 17 00:00:00 2001 From: Bruno Roesner Date: Sat, 19 Oct 2024 18:18:01 -0400 Subject: [PATCH] added environment variable to set room authentication --- docker-compose.yaml | 1 + server/.env.example | 2 ++ 2 files changed, 3 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 898a78a..770f6db 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -30,6 +30,7 @@ services: SITE_URL: http://localhost FRONTEND_PORT: 5173 USE_PORTS: false + AUTHENTICATED_ROOMS: false volumes: - ./server/auth_config.json:/usr/src/app/serveur/config/auth_config.json depends_on: diff --git a/server/.env.example b/server/.env.example index 8553a4b..3ab7212 100644 --- a/server/.env.example +++ b/server/.env.example @@ -19,3 +19,5 @@ SESSION_Secret='session_secret' SITE_URL=http://localhost FRONTEND_PORT=5173 USE_PORTS=false + +AUTHENTICATED_ROOMS=false