@vicky_grok: THIS IS INSANE Shopify’s CEO just released a Git server with NO DATABASE. The S3 bucket is literally the repository. It…
Summary
Shopify's CEO Tobi Lütke released walgit, a Rust-based Git server that stores repositories in object storage like S3 without a database, featuring various functionalities and over 1,300 GitHub stars.
View Cached Full Text
Cached at: 08/26/26, 03:49 PM
THIS IS INSANE
Shopify’s CEO just released a Git server with NO DATABASE.
The S3 bucket is literally the repository.
It’s called walgit — a Rust-based Git server that stores repositories as a write-ahead log in S3 or GCS.
And it already crossed 1,300+ GitHub stars.
Here’s the wild part:
- Your Git data lives directly in object storage
- The manifest acts as the commit point
- Servers become disposable caches
- Fresh clones can pull static bundles from S3 or a CDN
- Large repositories can be served without keeping everything on local disk
No database. No leader. No important local state.
Kill every server and you lose cache warmth — not your data.
It also supports:
→ Smart HTTP v0/v2 → Git LFS → Token + OIDC authentication → Per-repository push policies → Webhooks → React web UI → JSON API + SDK
And yes, it was built by Tobi Lütke, Shopify’s CEO.
Vikas gupta (@vicky_grok): stop trying to fine-tune an llm on your company data. it’s expensive and it doesn’t prevent hallucinations. the industry standard is RAG (retrieval-augmented generation). here is the complete architectural blueprint for building it.
Similar Articles
Walgit – a Git server that is one binary in front of an object store
Walgit is a Git server implementation that runs as a single binary, using object storage like S3 or GCS as the backend, enabling scalable hosting of Git repositories without local state.
@tobi: https://x.com/tobi/status/2053121182044451016
Shopify CEO Tobi Lütke introduces River, an AI agent that operates exclusively in public Slack channels to facilitate code generation and knowledge sharing across the organization.
@tobi: Agreed
Shopify CEO Tobi Lütke agrees with Ilya Grigorik that Shopify's Global Catalog is the gold rush opportunity of 2026, being open, free, and agent-ready for discovery-to-checkout.
@davidsenra: I love this idea from Tobi Lutke: “I take the view that I'm a corporate raider. That Shopify went bankrupt and I bought…
Tobi Lütke shares his perspective on leading Shopify, comparing his approach to that of a corporate raider turning around a bankrupt company.
I taught a bucket to speak Git
The author demonstrates how to use the billy filesystem abstraction to make a Tigris object storage bucket behave like a filesystem, enabling go-git to treat it as a git repository server directly.