You do not have a personal development environment
(reposting from #general) When I try and access the dev env I'm getting the following error, prod works fine. I tried running "npx convex dev" on my local machine, but I'm still getting the error.
4 Replies
@Andy What happens when you run
npx convex dev
on your machine?It loads: "15:38:54 Convex functions ready! (700.26ms)", but gets stuck there and never completes. I just updated to version 1.1.1 today.
There are two possibilities here, either your command line is logged in with a different user than you are logged in as in the browser or your local dev setup is connected to a different project.
Try
npx convex dev --configure
and choose to configure "an existing project"
Do you see your team listed there?
If not, it sounds like you're logged in as a diferent user. If so, they choose this project and you should be set.Thank you. npx convex dev --configure fixed the issue.