This commit is contained in:
eric
2026-06-08 06:05:31 -05:00
parent ebfec37e47
commit 06ab949d81
77 changed files with 3646 additions and 358 deletions

View File

@@ -31,10 +31,11 @@ def _load_env_files() -> None:
ROOT_DIR / ".env.local",
ROOT_DIR / "backend" / ".env",
ROOT_DIR / "backend" / ".env.local",
ROOT_DIR / "cursor.env",
]:
loaded.update(_read_env_file(path))
for key, value in loaded.items():
os.environ.setdefault(key, value)
os.environ[key] = value
_load_env_files()