don't let hype apps pick their own port

This commit is contained in:
Chris Wanstrath 2026-01-28 11:08:52 -08:00
parent ac8a0c259a
commit 47e5a57806

View File

@ -132,7 +132,7 @@ const runApp = async (dir: string, port: number) => {
const proc = Bun.spawn(['bun', 'run', 'toes'], {
cwd,
env: { ...process.env, PORT: String(port) },
env: { ...process.env, PORT: String(port), NO_AUTOPORT: 'true' },
stdout: 'pipe',
stderr: 'pipe',
})