-
Notifications
You must be signed in to change notification settings - Fork 13
Add Root (/) Endpoint with Basic Status Response #25
Copy link
Copy link
Closed
Labels
good first issueGood for newcomersGood for newcomershelp wantedCommunity contributions are welcomeCommunity contributions are welcome
Description
Problem
The root path (/) currently returns a 404 Not Found error.
Goal
Return a simple response at / to confirm that the server is running.
Expected Response
{
"status": "UP",
"message": "Actionbase is running",
"version": "0.1.0",
"timestamp": "2026-01-09T03:12:45Z"
}Field Description
status: Current service status (e.g.UP)message: Human-readable status messageversion: Application version from the build configurationtimestamp: Current server time (ISO-8601, UTC)
Scope
- Handle
GET / - Return a static JSON response
- No dependency or health checks
Context
- Module:
server - Tech: Spring WebFlux (Kotlin)
Contribution
This is a good first issue.
Please comment if you would like to work on it.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomershelp wantedCommunity contributions are welcomeCommunity contributions are welcome