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

Project management tool

hey, I've been working on a side project - Project management tools (which is totally inspired by @webdevcody 's Project planner). Earlier you could only manage task in it. But this weekend I add a page to manage important links and files check it out -https://projectify.vigneshgupta.tech/...
No description

Tinkering With AI App Generators - LazyAI, Pythagora.ai

I decided to spend a bit of time to tinker with a couple of text-to-app AI tools. Checkout the post to see how well they could generate a fairly simple Convex related tool: https://mikecann.co.uk/posts/tinkering-with-ai-app-generators...

llama farm

The intrepid @ian recently created a pretty cool project that allows a bunch of random computers (your laptop, fly.io machines, whatever) running ollama3 to collectively run all the LLM work for a chat application. All this work is coordinated using Convex as a kind of job queue. This allows the LLM cluster to be scaled up, and nothing needs to expose ports to the Internet to participate. Pretty neat idea!...

Introducing Bolt Boilerplate: Speed Up Your Convex+Next.js+Clerk Setup

Hey everyone! Last week, I discovered Convex and was amazed at how seamlessly it integrates with databases and handles state management, especially as a new developer. I noticed a lack of resources for building with Convex, Next.js, and Clerk, so I decided to compile everything I've learned into Bolt Boilerplate. Styled with Shadcn. It comes with full-stack CRUD functions with Authentication out of the box, making it a breeze for fellow developers to kickstart new projects. I hope it's helpful to you too!...
No description

kevin, the AI Full-Stack Developer, building on Convex

Recently cooked up a specialized version of Devin for CRUD-based applications. Uses convex, and automatically generates full-stack applications with AI: https://www.youtube.com/watch?v=ZQ4mjZ1Le9o ...

Remi - AI Travel Assistant

Remi (https://remi.chat/) is a travel assistant powered by AI. It generates beautiful, full-fledged itineraries with images, maps, and more, removing the hassle of trip planning. Growing up, our family loved to travel. We’d choose a location, a time, and magically, we’d arrive. Our dad would then pull out a complete plan, with details on each and every place we would visit, everyone’s preferences (mostly) accounted for. Turns out, the simple convenience of travel I felt was actually powered by hours of painstaking research on our dad’s end. Ultimately, growing up, moving out and heading to college, I began to plan trips independently, becoming acutely aware of how difficult a job our dad actually had....
No description

ART ZASH

Fully functional text to paint generator, using convex for db, auth provided by clerk-convex, stripe-convex for payments. For now we are providing delivery only for Bulgaria and the platform is not international yet, but If you are looking for good example of using convex, check it. More info: after registration you are getting 5 free “conversation” with our text-to-image model, in between you should generate your dreamed image. After that you can choose details of your painting, which include choosing canvas, frame and size. Next there is a step for details about delivery and the last step is payment, which is external stripe checkout, but saving both the details in convex and stripe. I hope one day to make it international world wide app. https://art.zash.ltd...
No description

AI Powered Sales Productivity Platform

Created and launched the functional POC of this app using convex in 3 weeks. Now testing live users! https://app.klipy.ai...

Fullstack Fiverr Clone

👋 Hey there! I made a 6-hour Fiverr clone tutorial. Video: https://youtu.be/UK5SI3lU3X8 Github: https://github.com/vukrosic/next14-fiverr ...
No description

AI Powered WhatsApp Clone

Hey everyone, it's Burak here from As a Programmer (youtube channel) I recorded a full-stack WhatsApp Clone Tutorial thanks to Convex and it's real-time capabilities. Queries, mutations, actions, file storage, internal functions, authentication, WebHooks, GPT && DALL-E-3 etc. All in one app. Watch full tutorial if you want to follow along:https://youtu.be/sQ1zvdS8eU8 Source Code:https://github.com/burakorkmez/whatsapp-clone ...
No description

Messaging web app

Created a messaging web app using convex https://chat-rev.vercel.app...
No description

Squid-Redefined Collaboration on Github

What it does The Squid Developer Chat App is a dedicated communication platform designed exclusively for software developers. It provides a unified environment where developers can collaborate, discuss code, manage GitHub issues, and streamline development workflows in real time. Squid empowers developers to work more efficiently and effectively. How we built it Squid was built using a combination of technologies and frameworks, including:...
No description

local first Todo app

Hey Everyone, I've been learning about PWAs and decided to build a todo webapp using convex and replicache . - its local first - Works offline for a few mins/hours - automatically syncs with convex when back online ...
No description

AssessMe.AI : AI-powered automated assessment platform

AI-powered automated assessment platform that provides mock interviews, personalized feedback & analytics to enhance job candidates' interview performance and help them land their dream jobs. What it does - Allows users to apply for jobs and take mock assessments - Provides AI-generated feedback and analytics on interview performance...

Recapit

How many of you have experienced the frustration of knowing a concept but struggling to recall it during crucial moments like interviews or exams? With Recapit, say goodbye to that struggle! Our app ensures you're always prepared, even after days or weeks. show us some love at https://twitter.com/jashwanth0712/status/1770707650529165650...

XO Brain Ai

https://xobrain.ai/ https://devpost.com/software/xo-mf458w My hackathon entry building an External Brain Ai....
No description

Rust Macro: convex_model!

https://github.com/ragkit/convex-macros I've been using the Convex Rust client and found working with nested objects a bit cumbersome. I made a macro that creates native Rust structs and enums based on a Typescript schema definition. Then you can build it from convex::Value and serialize it to serde_json::Value automatically. ```rust...