Gallery-VTON / settings_config.py
IF-PROXYMO's picture
Dataframe cache & gcs upload
c4357d9
raw
history blame contribute delete
248 Bytes
from dynaconf import Dynaconf
from pathlib import Path
BASE_DIR = Path(__file__).resolve().parent
settings = Dynaconf(
settings_files=[
str(BASE_DIR / "resources" / "settings.yaml")
],
environments=True,
uppercase=False
)