Convex Community

CC

Convex Community

Join the community to ask questions about Convex Community and get answers from other members.

Join

support-community

show-and-tell

general

self-hosted

announcements

Issues running Convex Python client behind Docker

I'm running into an interesting issue while trying to utilize the Python sdk on a simple Flask application running on Gunicorn behind Docker. First off, the application works perfectly fine when not behind Docker. Usage of the sdk is fine. However the moment I set the application up behind Docker, any requests using the sdk suddenly timeout and I just get a stacktrace pointing to the sdk function called.
Looking through the docs for the sdk I noticed that there are technically 2 client objects, a websocket based one and an http one, my guess is I'm not exposing whatever port the websocket is trying to communicate through as the http client appears to work fine. ...

Return more detailed errors to the client (Convex Auth)

I am using Convex Auth to authenticate the user. I'd like to return more detailed errors to the client (as they appear in the logs), maybe via a throw new ConvexError, is it possible? I see in the Convex Dashboard, in the logs tab, that when a user enters the wrong password it is logged Invalid password. I'd like to know this and return a specific error in the client rather than a specific one. But right now I don't know if it is possible to do this. Thanks!...

Dynamic require of "stream" is not supported

Getting this error when deploying on Vercel

E-Mail verification without a verification Link

Hey all. Just started up the Free Plan and I wanted to add an additional e-mail account and make it my primary, but the e-mail verification that I get seems to be missing a verification link. What am I missing? And is this the correct channel to ask this?...

Large record update strategy

I have about 10k rows of data that changes daily for my company’s core product. I’m looking to import that as part of a nightly cron job for an internal tool I’m building in Convex to demonstrate its potential. I expect 70% of the data to remain the same. 10% to be removed and 20% to be added. I have an internal action to fetch the data nightly, but I’m unclear what next steps should be given that there’s no multi row functions in the Convex API. Do I really have to delete every row or do a lookup based on my internal ID and then perform the mutation for every record? Seems a bit inefficient....

What is the recommended way to do encryption?

I’m trying to encrypt API keys into a document but I’m running into some issues. I wanted to use node:crypto but I need the node environment for that but that environment doesn’t allow mutations. So I tried using the web crypto module but that is not fully implemented so I can’t get that working either. My other options are third-party libraries but crypto-js is deprecated and the alternatives seem unreliable I need to decrypt the value again later, so I can’t encrypt on the client either....

Convex Node runtime vs Node

Hi! I have a code that works outside of Convex runtime. It is short and simple so I put here for reference. When this runs on Convex, I get "Connection lost while action was in flight" and the logs show "Your request couldn't be completed. Try again later." The latter seems like a response from one of the external services I'm using. However, running the same code, with the same API keys, outside of Convex works perfectly fine. Has anyone came by something like this before? ```ts "use node"; ...

App Remounts on Navigation with Tanstack Router + Convex Auth

I verified both Convex Auth and (Clerk + Convex) providers. For both solutions, it seems that the app unmounts for some reason between navigations until the auth state is determined. So even when I am authenticated and navigate between protected routes, the issue remains, and the isAuthenticated state is reset on page navigation. _authed.tsx: ```tsx import { createFileRoute, Navigate, Outlet } from '@tanstack/react-router'; import { Authenticated, Unauthenticated } from 'convex/react';...

Not finding Function? But i can see it in the dashboard...

Air-Alert-Starter $ npx convex run getMaskRecommendation '{"latitude": 37.7749, "longitude": -122.4194}' ✖ Failed to run function "getMaskRecommendation": Error: [Request ID: 2bf512aecab915c6] Server Error Could not find function for 'getMaskRecommendation'. Did you forget to run npx convex dev or npx convex deploy? ...
No description

Using Sentry integration with Datadog

I would love to use the sentry integration with Datadog (I understand that there is a Datadog log integration, but I think setting up Error tracking is actually easier using the Sentry SDK. I'm not an expert, so I don't know whether this would actually make sense in productionTM. Anyway...) Datadog supports the Sentry SDK, but you need to provide a service name, like this: ```Sentry.init({ dsn: "<DSN>", initialScope: { tags: {...

Table Aggregrate Component Question

``` likes: defineTable({ userId: v.id('users'), parentId: v.union( v.id('posts'),...

having problem authenticating when running the project in github codespaces

I am using convexAuth when i am running the project in github codespaces and try to auhtenticate or create a account in my project i am seeing this error sign-up-card.tsx:47 POST https://musical-doodle-g455gvjr7wv73994v-3000.app.github.dev/api/auth 403 (Forbidden) sign-up-card.tsx:50 SyntaxError: Unexpected token 'I', "Invalid origin" is not valid JSON...

Env variables being pushed automatically

Is something like this possible: when running npx convex dev , variables in the following files inside the convex folder get pushed to the following deployments: env.local -> development env.staging -> preview...

multiple convex deployments (nextjs and expo) - do they overwrite?

Hey just a quick question, if running npx convex deploy from one repo (nextjs) which doesnt have all the schema and function files from the other repo (expo), doest this overwrite them in the convex dashboard or potentially delete them? Just being safe.

Convex Auth session keeps dying

Hi, My app session keeps dying out of nowhere. It happens ~daily (interestingly, usually happens at the same time as on the Convex Dashboard). Most of the times I open the browser (Arc) and both my app and Convex Dashboard are logged out, so I re-sign-in on both. Sometimes it happens while I'm using it (did just now)....
No description

Convex Self-host

I built an MVP for the company I work for on convex. I plan on using it in the actual product but we have to self-host in our own servers to be compliant with company policy. If i deploy convex in my company's servers myself, do i get a dashboard similar to the one in convex.dev?

Error after updateing auth running npx convex dev

get this error trying to deploy dev changes ```✘ [ERROR] No matching export in "../../node_modules/@auth/core/index.js" for import "customFetch" node_modules/@convex-dev/auth/dist/server/oauth/lib/utils/customFetch.js:3:9:...

Lets say there are a lot of apps...

Lets assume that there are 5 apps with their individual databases on Convex. Now lets say later in the future I realize that I want to suggested recommendations on one app based on the data in other apps - would that be possible with convex? (5 apps would have 5 databases as I think it would be scalable for each of those individual services/apps). Also is it possible to share auth data amongst all 5 apps?