15 lines
288 B
TypeScript
15 lines
288 B
TypeScript
import app from "./src/app";
|
|
const port = process.env.SERVER_PORT || 4000;
|
|
Bun.serve({
|
|
port,
|
|
fetch: app.fetch,
|
|
hostname: "0.0.0.0",
|
|
});
|
|
|
|
await Bun.build({
|
|
entrypoints: ["./index.js"],
|
|
outdir: "../../dist/server",
|
|
});
|
|
|
|
console.log(`server is running on port ${port}`);
|