Spaces:
Runtime error
Runtime error
File size: 207 Bytes
1748405 |
1 2 3 4 5 6 7 |
from dynaconf import Dynaconf
CONFIG = Dynaconf(
envvar_prefix="DYNACONF", # export envvars with `export DYNACONF_FOO=bar`.
settings_files=['./cfg/config.yml'], # Load files in the given order.
)
|