glucinater
glucinater
CCConvex Community
Created by glucinater on 5/10/2025 in #support-community
R2 component shows missing env variables despite being set
I'm trying to use the R2 Component but am getting the folliwing error despite having set the requried variables in my dev env: ```✖ Error fetching POST https://fortunate-jay-356.convex.cloud/api/deploy2/start_push 400 Bad Request: InvalidModules: Hit an error while pushing: Loading the pushed modules encountered the following error: Failed to analyze files.js: Uncaught Error: R2 configuration is missing required fields. R2_BUCKET, R2_ENDPOINT, R2_ACCESS_KEY_ID, R2_SECRET_ACCESS_KEY at new R2 (../node_modules/@convex-dev/r2/src/client/index.ts:119:74) at <anonymous> (../convex/files.ts:7:15)
11 replies
CCConvex Community
Created by glucinater on 3/5/2025 in #show-and-tell
Jackbox-like party games
https://games.adamgluck.com/ Hi all, im currently working on a little site to play games like quiplash or euchre with phones. Let me know what you guys think or if you have any game recommendations!
3 replies
CCConvex Community
Created by glucinater on 3/4/2025 in #support-community
Cloudflare Pages w/ Convex NEXT_PUBLIC_CONVEX_URL
No description
1 replies
CCConvex Community
Created by glucinater on 10/26/2024 in #show-and-tell
The Grade Guide (blog post)
Hey everyone! I just published a blog post about my most popular side project (which uses Convex). If you go to a public school, you can probably create something similar by following the steps I outlined in the post. Let me know what y’all think! https://adamgluck.com/posts/grade_guide
8 replies
CCConvex Community
Created by glucinater on 9/25/2024 in #support-community
Snapshot import without ID
Hey I'm trying to import a snapshot export from my prod deployment into my dev deployment and am getting the following error
Hit an error while importing:
New table departments has IDs that conflict with existing internal table. Consider importing this table without `_id` fields or import into a new deployment
Hit an error while importing:
New table departments has IDs that conflict with existing internal table. Consider importing this table without `_id` fields or import into a new deployment
. Is there a quick way to get around this?
8 replies
CCConvex Community
Created by glucinater on 9/6/2024 in #support-community
Are there any plans for a convex hosting service?
It would be nice to not have to manage a Netlify/Vercel/Other account.
23 replies
CCConvex Community
Created by glucinater on 3/18/2024 in #support-community
Rendering JS for scraping with Actions
Are there currently any ways to render js on websites through convex actions? I saw playwright and puppeteer aren't supported in the convex runtimes
5 replies
CCConvex Community
Created by glucinater on 2/29/2024 in #support-community
React Native Imports not found
No description
12 replies
CCConvex Community
Created by glucinater on 2/5/2024 in #support-community
How to avoid "connection reset by peer" exceptions when using python api?
I am currently trying to run a python script that does about 7k jobs that are decently bandwidth intensive. Yesterday about halfway through the job I got a "connection reset by peer" error message from the client which ended the job prematurely (also costing me a lot of bandwidth). How do I avoid getting this error?
6 replies
CCConvex Community
Created by glucinater on 2/5/2024 in #support-community
db.insert and db.get in succession not working
No description
10 replies
CCConvex Community
Created by glucinater on 2/3/2024 in #support-community
Advanced Filtering
Is there any way to filter with argument basic processing on the q.field() attribute? I am wary of using a searchIndex because I only want to return an item if it fits the criteria exactly. An example would be this:
const course = await ctx.db
.query("courses")
.filter((q) => q.and(
q.eq(q.field("Subject").toLowerCase(), args.Subject.toLowerCase()),
q.eq(q.field("Catalog"), args.Catalog)
)
).first();
const course = await ctx.db
.query("courses")
.filter((q) => q.and(
q.eq(q.field("Subject").toLowerCase(), args.Subject.toLowerCase()),
q.eq(q.field("Catalog"), args.Catalog)
)
).first();
5 replies
CCConvex Community
Created by glucinater on 2/1/2024 in #support-community
Using Convex Ent with Table helper
Does Convex Ent work with the Table utility from Convex helpers?
11 replies
CCConvex Community
Created by glucinater on 1/26/2024 in #support-community
Using Convex Validators in Typescript
No description
5 replies
CCConvex Community
Created by glucinater on 1/26/2024 in #support-community
Transfer project to new team
Is there a way to move a project into a different team?
3 replies
CCConvex Community
Created by glucinater on 11/25/2023 in #support-community
Is there a way to “organize” tables in Convex
I’m working on adding more schools to the site I recently posted to in showcase and would like to organize my data into the following configuration School 1 - Courses - Instructors - instances … School 2 - roughly same data as 1 with slight differences in column names/types Is there a way to make some sort of “folder” to store each set of tables? I’m worried if I keep expanding my data will be a mess of school1_Courses, school2_Courses, etc
15 replies
CCConvex Community
Created by glucinater on 11/24/2023 in #show-and-tell
The Grade Guide
No description
6 replies
CCConvex Community
Created by glucinater on 11/22/2023 in #support-community
Feature Request: Add linking for arrays of document IDs in dashboard
No description
1 replies
CCConvex Community
Created by glucinater on 11/19/2023 in #support-community
Is there a way to generate document Ids outside of convex
I have data tables that I'd like to create some relations for before uploading into convex. Is there a way for me to generate document ids and have convex use that for the _id property? Im currently using migrations but its expensive for my monthly db bandwidth
2 replies
CCConvex Community
Created by glucinater on 11/17/2023 in #support-community
Bug: Can't delete single record in table
No description
5 replies
CCConvex Community
Created by glucinater on 11/15/2023 in #support-community
UsePaginatedQuery with 1, 2, ..., n style?
I'm currently messing around with the usePaginatedQuery hook (https://docs.convex.dev/database/pagination) and am having trouble finding page-based pagination instead of just "load more". Is there a way to implement pagination that allows a user to navigate pagination through either back and next buttons or page number buttons?
5 replies