mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 22:14:07 +01:00
4 lines
127 B
Python
4 lines
127 B
Python
if os.environ.get("DJANGO_ENV") == "PRODUCTION":
|
|
from .production_settings import *
|
|
else:
|
|
from .local_settings import * |