Is there limitations on the dev cloud environment, or is it safe to use it for prototypes?
I don't need the separation of prod/dev right now and my usage doesn't need a lot of resources.
The deploy on save of the dev environment is really powerful 😅
2 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!
there are a few different settings in production deployments, like logs are not sent to clients https://docs.convex.dev/functions/error-handling/#differences-in-error-reporting-between-dev-and-prod
and it's harder to accidentally deploy a bug to production because the CLI asks for confirmation on deploy. (you can
npx convex dev --prod
if you want the push-on-save behavior for prod, but this isn't recommended because it's easy to push bugs)
and some things like custom domains are prod-only https://docs.convex.dev/production/hosting/custom
but there aren't any fundamental limitations to dev deployments compared to prod ones, so if you really want to you can use a dev one for a prototype.
we're glad you like the deploy-on-save behavior 😄