This commit is contained in:
2026-03-28 02:53:32 -04:00
commit 0d16742a67
51 changed files with 2818 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// server.ts
// A simple server that simulates a cold start of ~300ms
const BOOT_DELAY = 300;
console.log("Server starting...");
setTimeout(() => {
Bun.serve({
port: 3000,
fetch(req) {
return new Response("OK");
},
});
console.log("Server listening on http://localhost:3000");
}, BOOT_DELAY);