How It Works
Click Click Claude connects four tools into one seamless workflow.
GitHub — Your code
Every project gets a private GitHub repository. Claude commits code here, and every push triggers a deployment. You get full version control — every change is tracked, and you can always go back.
Vercel — Your hosting
Vercel builds and deploys your app automatically on every push. Production deployments go live at your custom domain or project.clickclick.cloud. Preview deployments are created for every branch, giving you a staging environment.
Supabase — Your database
Each project gets two Supabase projects: one for production, one for staging. Supabase provides a PostgreSQL database, authentication (email/password, social login), file storage, and real-time subscriptions — all configured automatically.
Claude Code — Your developer
Claude Code runs on your computer and writes the actual code. It understands your project's context (through a custom CLAUDE.md configuration), writes TypeScript and React, manages database migrations with Prisma, and deploys autonomously. You describe what you want; Claude builds it.
Analytics — Built-in
Every new project ships with a lightweight <Analytics /> component wired into the root layout. It POSTs a pageview to our platform on every route change — no third-party script, no cookies, no account to connect. Pageviews, unique pages, top countries, and device breakdown appear in the Analytics tab of the project dashboard.
The flow
1. You describe a feature → Claude writes the code
2. Claude commits to GitHub → Vercel builds and deploys
3. Preview deployment created → you test on staging
4. Merge to main → production goes live
5. Repeat