10 lines
187 B
Python
10 lines
187 B
Python
import os
|
|
from .base import *
|
|
|
|
# Import environment-specific settings
|
|
if os.environ.get('DJANGO_ENV') == 'production':
|
|
from .production import *
|
|
else:
|
|
from .development import *
|
|
|