npx convex dev *.ingest.sentry.io error when not connected to the internet
When trying to do offline development, when I do npx convex dev I get the following:
✖ Failed to get latest convex backend releases
✖ Hit an error while running local deployment.
Your error has been reported to our team, and we'll be working on it.
To opt out, run `npx convex disable-local-deployments`. Then re-run your original command.
Unexpected Error: Error: getaddrinfo ENOTFOUND o1192621.ingest.sentry.io
This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason:
Error: getaddrinfo ENOTFOUND o1192621.ingest.sentry.io
at GetAddrInfoReqWrap.onlookupall [as oncomplete] (node:dns:122:26)
ELIFECYCLE Command failed with exit code 1.
I don't really want to 'disable-local-deployments' as I'm wanting to develop locally.
unfortunately npx convex dev CLI doesn't really work when offline.
The Convex server runs locally, but there's still a bit of online work required to get the dashboard working with your local deployment.
It does sound like it would be pretty cool if we worked totally offline, but it's not the case right now.
You could try following the self-hosted guide to set up self-hosted convex. That is more likely to work while fully offline.
Insane we can't develop offline without a fully self hosted version. This should be addressed.