Initial commit
Deploy Bun App / deploy (push) Failing after 3s

This commit is contained in:
2026-08-18 10:19:55 +00:00
parent 02bdef2256
commit eae40dc14a
+7
View File
@@ -0,0 +1,7 @@
const server = Bun.serve({
port: process.env.PORT || 3003,
fetch(req) {
return new Response("Bun app deployed from Gitea\n", { status: 200 });
},
});
console.log(`Bun app running on port ${server.port}`);