From 980117132fecf617ee57c5e404e378f2a57cf986 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 27 May 2025 14:57:00 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(backend)=20add=20'sandbox'=20configur?= =?UTF-8?q?ation=20class=20for=20demo=20environment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Create dedicated config for sandbox environment used for external demos, bug bounties, and security auditing purposes. --- src/backend/meet/settings.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/backend/meet/settings.py b/src/backend/meet/settings.py index 6ca858c2..9fe098cd 100755 --- a/src/backend/meet/settings.py +++ b/src/backend/meet/settings.py @@ -802,6 +802,14 @@ class Staging(Production): """ +class Sandbox(Production): + """ + Sandbox environment settings + + nota bene: it should inherit from the Production environment. + """ + + class PreProduction(Production): """ Pre-production environment settings