Files
elysium/apps/api/src/index.ts
T
hikari 3ff17bda84 feat: add about page with versions, changelog, and how-to-play
- New GET /about API endpoint caches Gitea releases for 5 minutes
- AboutPanel displays client version (via Vite define), API version, collapsible changelog, and How to Play guide
- GiteaRelease and AboutResponse types added to shared package
2026-03-06 23:16:50 -08:00

38 lines
1.1 KiB
TypeScript

import { serve } from "@hono/node-server";
import { Hono } from "hono";
import { cors } from "hono/cors";
import { logger } from "hono/logger";
import { aboutRouter } from "./routes/about.js";
import { authRouter } from "./routes/auth.js";
import { bossRouter } from "./routes/boss.js";
import { gameRouter } from "./routes/game.js";
import { prestigeRouter } from "./routes/prestige.js";
import { profileRouter } from "./routes/profile.js";
const app = new Hono();
app.use("*", logger());
app.use(
"*",
cors({
origin: process.env["CORS_ORIGIN"] ?? "http://localhost:5173",
allowHeaders: ["Authorization", "Content-Type"],
allowMethods: ["GET", "POST", "PUT", "DELETE", "OPTIONS"],
}),
);
app.route("/about", aboutRouter);
app.route("/auth", authRouter);
app.route("/game", gameRouter);
app.route("/boss", bossRouter);
app.route("/prestige", prestigeRouter);
app.route("/profile", profileRouter);
app.get("/health", (context) => context.json({ status: "ok" }));
const port = Number(process.env["PORT"] ?? 3001);
serve({ fetch: app.fetch, port }, () => {
console.log(`Elysium API running on port ${port}`);
});