Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add /lith redirect to stats

+4
+4
lith/server.mjs
··· 360 360 361 361 // --- Routes --- 362 362 363 + app.get(["/lith", "/lith/"], (_req, res) => { 364 + res.redirect(302, "/lith/stats"); 365 + }); 366 + 363 367 // --- Lith stats API (consumed by silo dashboard) --- 364 368 app.get("/lith/stats", (req, res) => { 365 369 const uptime = Math.floor((Date.now() - BOOT_TIME) / 1000);