cineclub-site/server/ulm_cine_club_api/settings/__init__.py

8 lines
140 B
Python
Raw Normal View History

2022-07-13 01:56:51 +02:00
import os
2022-07-14 06:05:35 +02:00
2022-07-13 01:56:51 +02:00
IS_LOCAL_DEV = bool(os.environ.get("TELESCOOP_DEV"))
if IS_LOCAL_DEV:
from .dev import *
else:
from .production import *