This commit is contained in:
Iliyan Angelov
2025-11-26 22:32:20 +02:00
commit ed94dd22dd
150 changed files with 14058 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import os
from .base import *
# Import environment-specific settings
if os.environ.get('DJANGO_ENV') == 'production':
from .production import *
else:
from .development import *