Initial commit: JARVIS AI dashboard v2.3

- 4-tier chat: HA control → Ollama → Groq → Claude
- Push-based agent system with heartbeat/metrics
- Network monitoring, alerts, Proxmox, Home Assistant
- Windows + Linux agent installers
- Stats cache cron, facts collector, KB engine
This commit is contained in:
2026-05-25 13:22:57 +00:00
commit dc55e6c45b
27 changed files with 5835 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
Options -Indexes
RewriteEngine On
# Route all /api/* requests to api.php
RewriteCond %{REQUEST_URI} ^/api(/|$)
RewriteRule ^api(/.*)?$ api.php [QSA,L]
# Everything else serves static files or index.html
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]