From d7084f0eec2b8a0dccc2797e99a9e0982735fe1f Mon Sep 17 00:00:00 2001 From: Ahmed Nassar Date: Wed, 18 Dec 2024 16:07:37 +0200 Subject: [PATCH] fix: Remove default BASE_URL in settings for production environment --- egypt_metro/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egypt_metro/settings.py b/egypt_metro/settings.py index dc9052e..0b2415f 100644 --- a/egypt_metro/settings.py +++ b/egypt_metro/settings.py @@ -114,7 +114,7 @@ # General settings DEBUG = os.getenv("DEBUG", "False") == "True" # Default to False SECRET_KEY = os.getenv("SECRET_KEY") # Secret key for Django -BASE_URL = os.getenv("BASE_URL", "http://127.0.0.1:8000") # Base URL for the project +BASE_URL = os.getenv("BASE_URL") # Base URL for the project JWT_SECRET = os.getenv("JWT_SECRET") # Secret key for JWT tokens # Database configuration