Arod1207
Arod1207
CCConvex Community
Created by Arod1207 on 5/22/2025 in #support-community
Netlify Detected a non-production build environment and "CONVEX_DEPLOY_KEY" for a production Convex
I set the convex deploy key to the convex prod key in netlify. What could be causing this?
3 replies
CCConvex Community
Created by Arod1207 on 5/21/2025 in #support-community
NODE_ENV comes back as development
I am trying to put my first site into production. I am using netlify to host and stripe for payments. Right now I am using the stripe test keys with the prod db. When I get to my success page, I am redirected back to my localhost. Convex shows env='development'. I can't figure out what I am doing wrong
const baseUrl =
process.env.NODE_ENV === 'development'
? 'http://localhost:3000'
: process.env.NEXT_PUBLIC_HOST_URL
const baseUrl =
process.env.NODE_ENV === 'development'
? 'http://localhost:3000'
: process.env.NEXT_PUBLIC_HOST_URL
3 replies
CCConvex Community
Created by Arod1207 on 5/13/2024 in #support-community
React Native Related
I am building a vehicle tracking app, currently I am receiving the longitute and latitude in real time every 5 seconds. I will end up adjusting accordingly. Most likely moving up to every minute. I eventually want to display the points on a map. What would be the best way for me to store these on my backend. Would this be to much a the db to handle? Thanks for any advice. Newbie here
3 replies
CCConvex Community
Created by Arod1207 on 5/8/2024 in #support-community
Clerk authentication and convex
New developer here, I am confused as to what the getUserIdentity() actually does. If I save the subject that it returns in my db "userId2342lkadf..", would I be able to use that to filter data and only allow that user to see their data. What I am getting confused really is, is Clerk webhooks necessary to save the user to the database? Thanks and I do apologize that this question is hard to understand
3 replies
CCConvex Community
Created by Arod1207 on 5/7/2024 in #support-community
How can i work with dates?
I have a date picker and sending the date as a string to the backend, I want to be able to query by month. I may be doing this completely wrong, so any advice would be appreciated. Thank you
5 replies