Fix: Remove hardcoded paths - now fully standalone

- Changed all load_dotenv() calls to use relative path (just load_dotenv())
- No OpenClaw dependencies
- Works anywhere after pip install
This commit is contained in:
2026-03-13 04:34:22 +00:00
parent 8f577fc998
commit 8e92e99205
11 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ from typing import Any, Optional
import requests
from dotenv import load_dotenv
load_dotenv("/home/solaria/.openclaw/workspace/opus-orchestrator-ai/.env")
load_dotenv()
class GitHubIngestor: