https://github.com/krish120003/zercel
Vercel clone that supports Fluid Compute and automatic deployments.
https://github.com/krish120003/zercel
google googlecloudplatform honojs nextjs react typescript vercel
Last synced: 5 months ago
JSON representation
Vercel clone that supports Fluid Compute and automatic deployments.
- Host: GitHub
- URL: https://github.com/krish120003/zercel
- Owner: Krish120003
- Created: 2025-02-16T23:12:11.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-11T04:32:55.000Z (8 months ago)
- Last Synced: 2025-03-11T05:26:12.350Z (8 months ago)
- Topics: google, googlecloudplatform, honojs, nextjs, react, typescript, vercel
- Language: TypeScript
- Homepage: https://zercel.dev
- Size: 3.89 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://zercel.dev)
God's greatest [Vercel](https://vercel.com) clone. Made by [Krish](https://x.com/n0tkr1sh).

Checkout a blog post on the technical decisions and details!: [krish.gg/blog/making-a-vercel-clone](https://www.krish.gg/blog/making-a-vercel-clone)
## 🌟 Features
- Automatic GitHub Deployments $_1$
- Live Build Logs
- Global CDN Caching
- Free dynamic SSL Certificates
- Environment Variables
- Instant-Subdomain(s) Deployment
- Fluid Compute (Serverless Server Functions) $_2$
- _[Upcoming]_ Instant Rollback
- _[Upcoming]_ Preview URLs
- _[Upcoming]_ Server Logs
- _[Upcoming]_ Server Version Skew Protection
## 📦 Project Structure
```
zercel/
├── apps/ # Application projects
│ ├── router/ # Network router
│ ├── builder/ # Build system
│ └── web/ # Web interface
└── terraform/ # Infrastructure as code
```
## 🏗️ Infrastructure
The project uses Terraform for infrastructure management. Configuration can be found in the `terraform/` directory.
This project uses the following services:
- Cloudflare CDN
- GCP Cloud Run (Webapp, Router)
- GCP Cloud Run Jobs (Static Builds)
- GCP Batch (Server builds by orchestrating isolated VMs)
- Neon Postgres (Cloud SQL is too expensive)
- Upstash Redis (Cloud Memorystore is too expensive)
- GCP Cloud Bucket (Static site builds)
- GCP Artifact Registry (Docker images for server builds)
- GCP Eventarc (Webhook triggers)
## 📄 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
---
**Footnotes:**
$_1$: Currently only supports default repository branch on public (but authorized) repositories.
$_2$: Google Cloud Run configured with multiple concurrent requests with autoscaling are used to create the same behaviour as [Vercel Fluid Compute](https://vercel.com/fluid)