- Add journalctl_recent command and scrum4me-web to whitelist in commands.yml.example - Add SYSTEMD_UNITS env var to .env.example - lib/parse-systemd.ts: parse activeState, subState, uptime, description - /app/systemd: server page reading SYSTEMD_UNITS, client list with 10s polling and status badges - /app/systemd/[unit]: server detail page, client component showing systemctl status + last 100 journal lines (polling 10s) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
530 B
Text
9 lines
530 B
Text
DATABASE_URL="postgresql://USER:PASSWORD@HOST:5432/ops_dashboard"
|
|
SEED_USER_EMAIL="admin@example.com"
|
|
SEED_USER_PASSWORD="changeme"
|
|
OPS_AGENT_SECRET="replace-with-contents-of-/etc/ops-agent/secret"
|
|
OPS_AGENT_URL="http://127.0.0.1:3099"
|
|
# Comma-separated list of absolute repo paths to show on the /git page
|
|
REPO_PATHS="/srv/scrum4me/repos/scrum4me,/srv/ops/repos/ops-dashboard"
|
|
# Comma-separated list of systemd unit names to show on the /systemd page (must match commands.yml allowed list)
|
|
SYSTEMD_UNITS="scrum4me-web,ops-agent"
|