Replicated. Fast. Yours.
$ git push mz mainenumerating objects: 47, done.counting objects: 100% (47/47), done.writing objects: 100% (31/31), 4.2 KiB→ replicating to 3 nodes ··· done (23ms)→ ref updated: refs/heads/mainhttps://mz.dev/acme/api main → mainA stateless gateway coordinates writes. Peer nodes store your repositories on local NVMe and replicate across the cluster. Every push is acknowledged only after all nodes confirm.
┌──────────────┐ ┌──────────────┐
│ │ │ peer-01 │──── NVMe
│ gateway │─────────▶ │ peer-02 │──── NVMe
│ │ │ peer-03 │──── NVMe
└──────────────┘ └──────────────┘
coordination storage nodesSub-50ms pushes. NVMe storage with zero cold starts.
Every write hits 3 nodes before it's acknowledged.
Self-host the whole stack. No vendor lock-in. Git-native.
Install the CLI, authenticate, and push your first repo in under a minute.
$ curl -fsSL https://monozeit.dev/install.sh | sh$ mz auth login$ mz repo create my-app$ git remote add mz https://mz.dev/you/my-app.git$ git push mz main