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