Skip to content

Commit

Permalink
fix: Remove default BASE_URL in settings for production environment
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmedNassar7 committed Dec 18, 2024
1 parent a516a36 commit d7084f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion egypt_metro/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d7084f0

Please sign in to comment.