more issue -> sprint

This commit is contained in:
Oliver Bryan
2026-01-16 14:48:11 +00:00
parent 06d1f1c521
commit 047332ce0b
4 changed files with 994 additions and 251 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -24,7 +24,7 @@ const main = async () => {
const server = Bun.serve({
port: Number(PORT),
routes: {
"/": withCors(() => new Response(`title: eussi\ndev-mode: ${DEV}\nport: ${PORT}`)),
"/": withCors(() => new Response(`title: tnirps\ndev-mode: ${DEV}\nport: ${PORT}`)),
"/health": withCors(() => new Response("OK")),
// routes that modify state require withCSRF middleware
@@ -80,7 +80,7 @@ const main = async () => {
},
});
console.log(`eussi (issue server) listening on ${server.url}`);
console.log(`tnirps (sprint server) listening on ${server.url}`);
await testDB();
startSessionCleanup();
};