Hi.
In the main.py file there is an import from core.config import config, which means that get_config() is being executed before os.environ["ENV"] = env from main(), so I always end up with "development" from ENV: str = "development".
Am I missing something?
Hi.
In the main.py file there is an import
from core.config import config, which means that get_config() is being executed beforeos.environ["ENV"] = envfrom main(), so I always end up with "development" fromENV: str = "development".Am I missing something?