LogForge Backend

Service discovery for the LogForge backend.

This service provides authentication, WCL data APIs, and scheduled cache maintenance for LogForge clients. Operational status lives in health and readiness endpoints.

Service
logforge-backend
Version
0.3.0
Environment
production
Auth base
https://logforge-backend.soaring-labs.com/api/auth

Liveness

/health

Process-level check for platforms and uptime monitors.

Readiness

/ready

Dependency check for database and required runtime config.

API Reference

/docs

Human-readable API documentation for LogForge clients.

Responsibilities

  • Authentication backend powered by Better Auth.
  • WCL rankings, character search, and favorites APIs.
  • Scheduled WCL cache cleanup and retention tasks.

Diagnostics

Root stays boring on purpose.

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"
  }
}