diff --git a/components/core/utils/app_constants.py b/components/core/utils/app_constants.py index 9a141878..6bc70748 100644 --- a/components/core/utils/app_constants.py +++ b/components/core/utils/app_constants.py @@ -1 +1,2 @@ -SERVER_SECRET_KEY = "123456789" +import os +SERVER_SECRET_KEY = os.environ.get('BASSA_SERVER_KEY')