fix
This commit is contained in:
parent
1131a9d95b
commit
202f4f62ce
|
|
@ -1,12 +1,8 @@
|
||||||
import { spawnSync } from "child_process";
|
|
||||||
|
|
||||||
Bun.serve({
|
Bun.serve({
|
||||||
port: 3000,
|
port: 4550,
|
||||||
fetch(request, server) {
|
fetch(request, server) {
|
||||||
return new Response("Hello World\n\n" + process.cwd(), {
|
return new Response("Hello World\n\n" + process.cwd(), {
|
||||||
status: 200,
|
status: 200,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
spawnSync("bun run prod", { cwd: "/app/prasi/repo" });
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue