Currently, all of the config is scattered throughout the codebase. For example: ` if settings.hosted and os.getenv("HOSTED_DEPLOYMENT") == "google": db_name, db_username = await create_cloud_db(repo) ` We need to refactor this into config wrapper.
Currently, all of the config is scattered throughout the codebase. For example:
if settings.hosted and os.getenv("HOSTED_DEPLOYMENT") == "google": db_name, db_username = await create_cloud_db(repo)We need to refactor this into config wrapper.