winsoroaks
winsoroaks
Explore posts from servers
CCConvex Community
Created by winsoroaks on 4/29/2025 in #support-community
How to properly combine a Convex query with an action?
got it. thanks!
10 replies
CCConvex Community
Created by winsoroaks on 4/29/2025 in #support-community
How to properly combine a Convex query with an action?
if i dont want it to be reactive, can i run the action without storing the decrypted data in the table for fetching?
10 replies
CCConvex Community
Created by winsoroaks on 4/29/2025 in #support-community
How to properly combine a Convex query with an action?
thanks! this seems kinda messy 😦
10 replies
CCConvex Community
Created by winsoroaks on 4/4/2025 in #support-community
any recommendation on how to store PII?
and i noticed this is kinda futile since if my github account is compromised, the attacker would have access to my AWS secrets key in the convex env vars dashboard 😂
7 replies
CCConvex Community
Created by winsoroaks on 4/23/2025 in #support-community
how to test if schemaValidation = true works in prod without pushing
that doesnt seem to be editable
7 replies
CCConvex Community
Created by winsoroaks on 4/23/2025 in #support-community
how to test if schemaValidation = true works in prod without pushing
just wanna figure out which field in my prod table is corrupted so i can clean them up and do schemaValidation = true
7 replies
CCConvex Community
Created by winsoroaks on 4/22/2025 in #support-community
convex backup
thanks all!
6 replies
CCConvex Community
Created by winsoroaks on 4/4/2025 in #support-community
any recommendation on how to store PII?
thanks, jamie. getting access to github credentials is my only concerns
7 replies
CCConvex Community
Created by winsoroaks on 6/26/2024 in #support-community
tools to subscribe to websocket on the backend?
got it. thanks 🙂
9 replies
CCConvex Community
Created by winsoroaks on 6/26/2024 in #support-community
tools to subscribe to websocket on the backend?
ok i see. thanks. ugh just notice that endpoint doesnt have webhook 🫠
9 replies
CCConvex Community
Created by winsoroaks on 6/26/2024 in #support-community
tools to subscribe to websocket on the backend?
got it. is it possible to do so from the server?
9 replies
CCConvex Community
Created by winsoroaks on 6/26/2024 in #support-community
tools to subscribe to websocket on the backend?
yes they do. Should i just do normal fetching at 1s interval?
9 replies
CCConvex Community
Created by awangardajazz on 6/9/2024 in #support-community
<Authenticated> <Unauthenticated> + NextJS 14
also it's better to paste code using backticks (`) x3 than pasting images 🙂
4 replies
CCConvex Community
Created by awangardajazz on 6/9/2024 in #support-community
<Authenticated> <Unauthenticated> + NextJS 14
here's what i do for the src/app/page.tsx
import { redirect } from "next/navigation"
import { currentUser } from "@clerk/nextjs/server"

export default async function HomePage() {
const user = await currentUser()
if (user) {
return redirect("/")
}
return redirect("/sign-in")
}
import { redirect } from "next/navigation"
import { currentUser } from "@clerk/nextjs/server"

export default async function HomePage() {
const user = await currentUser()
if (user) {
return redirect("/")
}
return redirect("/sign-in")
}
4 replies
CCConvex Community
Created by awangardajazz on 6/9/2024 in #support-community
<Authenticated> <Unauthenticated> + NextJS 14
redirect only works for server components, Authenticated only works for client components
4 replies