Sign in & sign up work on cloud dev, error on production
Hello all,
I've deployed my app via Vercel, and followed the set-up guy carefully using differerent env vars for dev and prod. I'm using Convex Auth.
My sign up and sign in flow seems to work perfectly when running on cloud dev. But on production, I'm getting the following errors:
When signing up:
Uncaught Error: Missing environment variable JWT_PRIVATE_KEY at requireEnv (../../node_modules/@convex-dev/auth/src/server/utils.ts:4:2)
However the authAccount and user records are created successfully.
So I tried signing in:
Uncaught Error: InvalidSecret at retrieveAccount (../../node_modules/@convex-dev/auth/src/server/implementation/index.ts:601:2)
Any idea what these mean?4 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!
Have you run the Convex Auth set up script for prod? https://labs.convex.dev/auth/production
Production - Convex Auth
Authentication library for your Convex backend
This one?
npx @convex-dev/auth --prod
I don't recall, so I gave it a try and all my files looked as the wizard said they should.
Huh, that fixed it it seems. I guess it sets all those env vars in the prod environment if you run it with the --prod
flag?I guess it sets all those env vars in the prod environment if you run it with the --prod flag?Yup exactly