Convex Local Dev Deployments failing
Running Local Dev Deployments with
npx convex dev --local --once
sets the .env.local
to localhost.
But Convex cannot connect: ⠴ Fetch failed, is http://127.0.0.1:3210 correct? Retrying...
It seems like the local instance isn't running.
Same issue on the Convex Dashboard
8 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
npx convex dev
is the thing running the local deployment, so you need to keep that running (i.e. remove the --once
) to be able to connect to itIt's been running. Doesn't help, unfortunately.
Just tested it with a clean, new Convex app and it's not working either...
Hmm. So a couple things you can do:
* Can you check that you're running Node 18? (
node --version
) -- I think we've had issues around that in the past, but thought we fixed it to print a better error message
* If that doesn't work, to get you unblocked, you can opt out (npx convex disable-local-deployments
) and then you'll be running against a cloud deployment (which should definitely work)I'm on Node 22 (v22.12.0)
Yeah, Cloud works great. But we'd love to get local working. We're using Devin.ai and want each Devin VM to have its own Convex environment. Local seems perfect for that.
Will test with Node 18
Ah gotcha. Hopefully Node 18 helps -- there's also some changes in the pipeline that might make it easier to spin up a local backend from the CLI
Works now on Node 18, thanks for the help!
Would have apreciated some clearer guidance on this in the doc page for Local Deployment. How I understood it, only the projects "use node" directives rely on Node 18. But it seems like any local deployment needs Node 18
Yeah looks like this is a regression (both that now every project requiring Node 18 + there being no good error message), so thank you for raising it. Looking into fixing that now