Responsibilities
- Authentication backend powered by Better Auth.
- WCL rankings, character search, and favorites APIs.
- Scheduled WCL cache cleanup and retention tasks.
LogForge Backend
This service provides authentication, WCL data APIs, and scheduled cache maintenance for LogForge clients. Operational status lives in health and readiness endpoints.
Liveness
Process-level check for platforms and uptime monitors.
Readiness
Dependency check for database and required runtime config.
API Reference
Human-readable API documentation for LogForge clients.
Responsibilities
Diagnostics
The root path is intentionally stable and low-interaction. Runtime availability is represented by /health and /ready, while public status communication will be handled separately in the next step.
{
"service": "logforge-backend",
"version": "0.3.0",
"environment": "production",
"responsibilities": [
"authentication",
"wcl-api",
"wcl-cache-jobs"
],
"endpoints": {
"health": "/health",
"readiness": "/ready",
"docs": "/docs",
"auth": "/api/auth"
}
}