creating contenerization

This commit is contained in:
rafiarrafif
2025-05-23 20:46:47 +07:00
parent be493b08ef
commit b8b5182911
14 changed files with 1013 additions and 37 deletions

View File

@ -1,7 +1,7 @@
import { Elysia } from "elysia";
import { routes } from "./routes";
const app = new Elysia().use(routes).listen(3200);
const app = new Elysia().use(routes).listen(process.env.PORT || 3000);
console.log(
`🦊 Elysia is running at ${app.server?.hostname}:${app.server?.port}`