fix(nix): build web dashboard frontend in Nix package

This commit is contained in:
alt-glitch 2026-04-18 20:51:17 +05:30
parent 6fb69229ca
commit 50c8198918
4 changed files with 74 additions and 3 deletions

View file

@ -59,7 +59,7 @@ except ImportError:
f"Install with: {sys.executable} -m pip install 'fastapi' 'uvicorn[standard]'"
)
WEB_DIST = Path(__file__).parent / "web_dist"
WEB_DIST = Path(os.environ["HERMES_WEB_DIST"]) if "HERMES_WEB_DIST" in os.environ else Path(__file__).parent / "web_dist"
_log = logging.getLogger(__name__)
app = FastAPI(title="Hermes Agent", version=__version__)