👷 ci: configures Docker build and publish workflow

This commit is contained in:
2025-08-08 18:20:18 +07:00
parent 3b9877d257
commit 00afcd84f3
4 changed files with 39 additions and 66 deletions
+3 -3
View File
@@ -178,8 +178,8 @@ app.get("/", async ({ server, request, set, headers }) => {
};
});
app.listen(3000, () => {
console.log("🦊 Elysia is running at http://localhost:3000");
app.listen(process.env.PORT ?? 3000, () => {
console.log(`🦊 Elysia is running at http://localhost:${process.env.PORT ?? 3000}`);
});
export default app;
// export default app;