E-Mail verification without a verification Link
Large record update strategy
What is the recommended way to do encryption?
Convex Node runtime vs Node
App Remounts on Navigation with Tanstack Router + Convex Auth
Not finding Function? But i can see it in the dashboard...
npx convex dev
or npx convex deploy
?
...
Using Sentry integration with Datadog
Table Aggregrate Component Question
having problem authenticating when running the project in github codespaces
Env variables being pushed automatically
npx convex dev
, variables in the following files inside the convex folder get pushed to the following deployments:
env.local
-> development
env.staging
-> preview...`use node` Convex Auth provider
crypto
package.
Implementation: https://github.com/nickretallack/ranked-choice-convex/blob/92fbcb532aa40af85b3e613885e6bf0c694b87dd/convex/telegram/auth.ts#L9-L20
Used here https://github.com/nickretallack/ranked-choice-convex/blob/92fbcb532aa40af85b3e613885e6bf0c694b87dd/convex/auth.ts).
Unfortunately, this causes convex to produce this error:...multiple convex deployments (nextjs and expo) - do they overwrite?
Convex Auth session keeps dying

Convex Self-host
Error after updateing auth running npx convex dev
Lets say there are a lot of apps...
Keeping the user logged in forever.
Can I setup an index with array list field
users
table, I'm adding a new key roles
which is an array. Is it possible to declare an index based on that field? If yes, how could I run a query using the .withIndex
api where the values of the field are in a list? If this is not possible, is there a pattern or workaround I could choose to "limit" queries upon the (very large) users
table, based on roles
?Circular dependencies in validators
Table
from convex helpers, and I want to define some enriched versions of these documents using a Convex validator in the same schema.ts
file such that I can pass it around to other validators and Convex functions. I'm running into circular dependency issues, however.
See the attached screenshot for the specific example. I can seemingly fix this by putting enrichment validators into a enrich.ts
file in each table folder, but is this really the only way? I would love to have both table validator and enriched validators and types in the same schema.ts
file....