A powerful dashboard to manage your microservices without Docker.
Define your services in services.json at the root of the project.
{
"services": [
{
"name": "example-service",
"path": "D:/projects/my-service",
"port": 8080,
"startCommand": "mvn spring-boot:run"
}
]
}Go to the backend folder and run:
mvn spring-boot:run
(Alternatively: java -jar target/manager-0.0.1-SNAPSHOT.jar)
Go to the frontend folder and run:
npm run dev
Access the UI at: http://localhost:3000
- Start/Stop/Restart: Manage service lifecycle.
- Live Logs: Streaming logs via SSE.
- Health Monitoring: Visual indicators for service status.
- Rebuild: Trigger Maven builds from the UI.
- Backend: Spring Boot 3, Java 17+, Maven, Actuator
- Frontend: React, Vite, MUI, Framer Motion


