Shipr is a self-hosted, open-source platform that lets you deploy frontend projects (e.g., React, Vue, Svelte) directly from a GitHub repository to a custom subdomain, like myapp.shipr.com automatically.
Think of it as your own mini Vercel or Netlify, but fully in your control.
- GitHub Integration — Deploy directly from any public GitHub repo.
- Wildcard Subdomains —
*.shipr.comrouting out of the box. - Automated Builds — Clone → Install → Build → Deploy — all in an isolated environment.
- Secure Sandboxing — Builds run inside isolated containers with resource limits.
- Extensible — Modular architecture for adding new deployment backends or build strategies.
- Self-hostable — Own your infrastructure and data.
┌──────────────┐ ┌───────────────┐ ┌─────────────┐
│ API Server │ ───> │ Build Server │ ───> │ Artifact │
│ (Control) │ │ (Worker) │ │ Storage │
└──────┬───────┘ └──────┬────────┘ └─────┬───────┘
│ │ │
▼ ▼ ▼
User submits repo Build is sandboxed Reverse proxy serves
- Domain : Subdomain & deployed site at subdomain.shipr.com
- API Server : Accepts deployment requests, stores metadata, triggers builds.
- Build Server : Executes builds in isolated containers.
- Reverse Proxy : Routes incoming traffic to the correct deployed site.
- Storage : Stores build artifacts i.e S3
- Backend — Node.js + TypeScript
- Builds — Docker-based isolated environments
- Reverse Proxy — Custom reverse proxy using http-proxy
- Storage — S3
- Package Manager — pnpm
- I/O Server — Socket.io
- Logging — Redis
- Node.js >= 18
- pnpm
- Docker & Docker Compose
git clone https://github.com/callmegautam/Shipr.git
cd ShiprCopy .env.example in each service and update values:
cp api-server/.env.example api-server/.env
cp build-server/.env.example build-server/.env
cp reverse-proxy/.env.example reverse-proxy/.env- API server at
http://localhost:3000 - Reverse proxy serving deployed apps
- Build server workers
For production, you’ll need:
- A domain with wildcard DNS (
*.yourdomain.com→ server IP) - Persistent storage for artifacts
Coming soon: Helm charts for Kubernetes.
We welcome contributions! Please read the CONTRIBUTING.md for guidelines.
This project is licensed under the MIT License.
- File an issue in the GitHub Issues page.
- Discussions & Q&A in GitHub Discussions.