18 lines
383 B
Python
18 lines
383 B
Python
import contextlib
|
|
import os
|
|
|
|
from .base import *
|
|
|
|
ENVIRONMENT = os.getenv("ENVIRONMENT", "development")
|
|
if ENVIRONMENT == "production":
|
|
from .production import *
|
|
else:
|
|
from .development import *
|
|
|
|
from config.services.auditlog import *
|
|
from config.services.logging import *
|
|
from config.services.unfold import *
|
|
|
|
with contextlib.suppress(ImportError):
|
|
from .local import *
|