Initial scaffold: FastAPI server, responsive UI shell

This commit is contained in:
2026-06-01 23:44:10 -04:00
commit 049edc0238
8 changed files with 204 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
"""Hermes Command Center - Main FastAPI application."""
import uvicorn
if __name__ == "__main__":
uvicorn.run(
"server:app",
host="0.0.0.0",
port=8888,
reload=True,
reload_dirs=["."]
)