Omar
Omar13mo ago

define celebrity

define celebrity
17 Replies
erquhart
erquhart13mo ago
my dog fancies himself a celebrity but he's only on insta
zor
zor13mo ago
Gave my two days and myself a headache for a webhook 404 error that got fix by changing the "convex.cloud" endpoint URL to "convex.site"
zor
zor13mo ago
docs saying you can find your deployment name in .env.local I copied my NEXT_PUBLIC_CONVEX_URL=https://---.convex.cloud. So I also never thought Convex may have multiple different domains rather than only one main
No description
zor
zor13mo ago
oh also thanks to Convex AI support bot. I wish I asked AI first
Incorrect Deployment URL: Ensure that you're using the correct deployment URL. The URL should be in the format <https://<your-deployment-name>.convex.site/<your-route>.> You can find your deployment name in your project settings. As mentioned in a Discord support thread (https://discord.com/channels/1019350475847499849/1177718838075347094), the endpoints are exposed at <https://<your-deployment-name>.convex.site,> not .cloud.
Incorrect Deployment URL: Ensure that you're using the correct deployment URL. The URL should be in the format <https://<your-deployment-name>.convex.site/<your-route>.> You can find your deployment name in your project settings. As mentioned in a Discord support thread (https://discord.com/channels/1019350475847499849/1177718838075347094), the endpoints are exposed at <https://<your-deployment-name>.convex.site,> not .cloud.
erquhart
erquhart13mo ago
I've done this, would be nice for Convex to look out for this sort of thing and give some helpful messaging.
Michal Srb
Michal Srb13mo ago
I'm making it clearer.
No description
Gorka Cesium
Gorka Cesium13mo ago
got a fun one: https://discord.com/channels/1019350475847499849/1239584539756724315 trying to figure out recursive types
hasanaktasTR
hasanaktasTR13mo ago
How does it check the id I gave in the db.get process? document id: "kn7dnea9dyry05t333pv73mv8x6ry98t" But when I make a request like this, the same document is returned. "kn7dnea9dyry05t333pv73mv8x6ry98th", "kn7dnea9dyry05t333pv73mv8x6ry98t5", "kn7dnea9dyry05t333pv73mv8x6ry98t2" and so on. I add a character at the end.
erquhart
erquhart13mo ago
blocked and reported
Admin Help
Admin Help13mo ago
@hasanaktasTR
erquhart
erquhart13mo ago
@Wayne ^^ spammer
lee
lee13mo ago
ids are encoded using base32, so each 5 bits of internal ID are converted into a single character. Since 5 doesn't divide evenly into 8, there's a little buffer at the end where the bits don't matter. However, using multiple IDs to refer to the same document is not meant to be supported and we are likely to remove this behavior to avoid unexpected bugs.
hasanaktasTR
hasanaktasTR13mo ago
Thanks @Lee . I keep the url as /products/${id}. I came across it while trying it randomly. That's why I wanted to ask.
Foxxy
Foxxy13mo ago
Has anyone encountered an issue where Convex types seemingly break? I was working on my own branch fine, switched to a different branch, and now my project won't compile with loads of Convex type errors... Conventions that should be working are now throwing tons of type errors. Issues like this have just cropped up all over my codebase
No description
Michal Srb
Michal Srb13mo ago
I'd: - Make sure that npx convex dev is running successfully (it does a little codegen that might have different results between your branches) - Restart TypeScript server in VS Code (as it is a fickle mistress)
Khalil
Khalil13mo ago
does Convex support Clerk core2?
zash
zash13mo ago
Hello guys, is there Safeway to create self hosted convex database and connect it to sql server for realtime data overwriting.

Did you find this page helpful?