- Add host-status-monitor with macOS/Linux support - Add vitest + playwright testing setup - Add docker-compose for local development - Add metrics persistence service - Improve deploy scripts and env configs - Update frontend components and auth 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
25 lines
571 B
Text
25 lines
571 B
Text
# Status Dashboard Configuration
|
|
# Copy to .env and fill in values
|
|
|
|
# Server
|
|
STATUS_PORT=5000
|
|
PUBLIC_URL=https://status.atlilith.com
|
|
CORS_ORIGIN=https://status.atlilith.com
|
|
|
|
# Authentication (REQUIRED)
|
|
STATUS_ADMIN_PASSWORD=your-secure-admin-password
|
|
STATUS_JWT_SECRET=your-64-char-jwt-secret-here
|
|
STATUS_TOTP_SECRET=
|
|
|
|
# mTLS Configuration
|
|
MTLS_ENABLED=true
|
|
# Certificates are mounted from vault/certs/
|
|
|
|
# Monitoring Thresholds
|
|
CPU_THRESHOLD=90
|
|
MEMORY_THRESHOLD=85
|
|
DISK_THRESHOLD=90
|
|
RETENTION_DAYS=30
|
|
|
|
# Vault path (relative to docker-compose.yml)
|
|
VAULT_PATH=../../vault
|