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
+28
View File
@@ -0,0 +1,28 @@
# Hermes Command Center
Mobile-friendly web dashboard for managing Hermes agents, configs, and network infrastructure.
## Features
- **Agent Chat Interface** - Talk to all Hermes profiles (kanban, coder, assistant, artist)
- **Config Editor** - Edit .env and YAML config files
- **Obsidian Vault Reader** - Browse markdown notes and wiki
- **Network Status** - Live host and service monitoring
## Tech Stack
- FastAPI backend
- Vanilla HTML/CSS/JS frontend
- Mobile-first responsive design
- Port: 8888
## Development
```bash
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python3 main.py
```
Access at: http://localhost:8888