Hi, I may have found an issue with convex dev --start where the command started via --start is not always killed on Ctrl+C.
I can reproduce it locally with Next.js/Turbopack on macOS, specifically when running through bun run dev, and I’m trying to figure out whether this is specific to my setup or something others can reproduce too.
Issue: https://github.com/get-convex/convex-backend/issues/441
PR: https://github.com/get-convex/convex-backend/pull/442
If anyone else has seen this too, a quick reply or reaction would be really helpful.
GitHub
Summary When running convex dev with --start through Bun's script runner, pressing Ctrl+C stops the Convex dev process but does not always stop the command started via --start. In my case, the ...