Ein moderner, kostenloser Status-Monitor mit Neon-Cyberpunk-Design. Gehostet auf GitHub Pages, angetrieben durch GitHub Actions.
Minimaid checkt deine Services (Websites, Minecraft-Server, FiveM-Server) alle 5 Minuten per CI/CD-Pipeline – ganz ohne eigenen Server.
- Multi-Service Monitoring – HTTP/HTTPS, Minecraft (Java & Bedrock), FiveM
- Neon Cyberpunk UI – Dark Mode, Glow-Effekte, pulsende Status-Indikatoren
- Interaktive Charts – Uptime & Antwortzeiten über 24h / 7 Tage / 30 Tage / 90 Tage
- Uptime-Bars – Visueller 48h-Verlauf pro Service
- Incident-Tracking – Automatische Vorfälle bei Statuswechsel
- Discord-Alerts – Webhook-Benachrichtigung bei Online ↔ Offline
- 100% Serverless – GitHub Actions als Worker, GitHub Pages als Hosting
- Einfache Konfiguration – Eine einzige
minimaid.config.yml
# Repository klonen / forken
git clone https://github.com/DEIN-USER/MiniMaid.git
cd MiniMaid
# Abhängigkeiten installieren
npm installBearbeite minimaid.config.yml und trage deine Services ein:
services:
- id: "meine-website"
name: "Meine Website"
type: "http"
url: "https://example.com"
expectedStatus: 200
- id: "mc-server"
name: "Minecraft Server"
type: "minecraft-java"
host: "mc.example.com"
port: 25565
- id: "fivem-server"
name: "FiveM Server"
type: "fivem"
host: "fivem.example.com"
port: 30120- In deinem Discord-Server: Servereinstellungen → Integrationen → Webhooks → Neuer Webhook
- Webhook-URL kopieren
- Im GitHub-Repository: Settings → Secrets and variables → Actions → New repository secret
- Name:
DISCORD_WEBHOOK_URL, Wert: deine Webhook-URL
- Settings → Pages → Source: wähle GitHub Actions
- Der Workflow deployed automatisch bei jedem Check
Der Workflow läuft automatisch alle 5 Minuten. Manuell starten:
Actions → Minimaid Status Check → Run workflow
MiniMaid/
├── .github/workflows/
│ └── minimaid.yml # GitHub Actions Workflow
├── worker/
│ ├── index.js # Hauptskript (der "Worker")
│ ├── checkers.js # Service-Checker (HTTP, MC, FiveM)
│ └── notify.js # Discord-Webhook
├── data/
│ └── history.json # Status-History (von der Pipeline beschrieben)
├── css/
│ └── style.css # Neon-Cyberpunk Styles
├── js/
│ └── app.js # Frontend-Logik, Charts
├── index.html # Status-Page
├── minimaid.config.yml # Zentrale Konfiguration
└── package.json
| Typ | Beschreibung | Pflichtfelder |
|---|---|---|
http / https |
Website / API Health-Check | url, opt. expectedStatus |
minecraft-java |
Minecraft Java Edition Server | host, opt. port (25565) |
minecraft-bedrock |
Minecraft Bedrock Edition Server | host, opt. port (19132) |
fivem |
FiveM (GTA V) Server | host, opt. port (30120) |
# Worker manuell ausführen
npm run check
# Seite lokal öffnen (z.B. mit npx serve)
npm run dev
# → http://localhost:3000Alle Einstellungen in minimaid.config.yml:
site:
title: "Minimaid"
description: "Mein Status Monitor"
theme:
accent: "#ff2d95" # Hauptfarbe
success: "#39ff14" # Online
danger: "#ff073a" # Offline
services:
- id: "unique-id"
name: "Anzeigename"
type: "http"
url: "https://..."
notifications:
discord:
enabled: true
webhook_url: "${DISCORD_WEBHOOK_URL}"
username: "Minimaid"
settings:
check_timeout: 10000 # ms
history_max_days: 90MIT