i701 9c975944b8
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m31s
Refactor Django settings module and environment configuration
- Move settings to a modular configuration structure
- Update environment variables in .env.example
- Modify DJANGO_SETTINGS_MODULE references across project files
- Simplify and standardize environment variable naming
2025-03-03 22:11:13 +05:00

7 lines
112 B
Python

import environ
from pathlib import Path
env = environ.Env()
BASE_DIR = Path(__file__).resolve().parent.parent