SuperStack Guide | Developer Wiki
SuperStack is a minimal application backend powered by PostgreSQL and PostgREST, routed through Caddy. Designed for speed, simplicity, and composability.
flowchart TD
Caddy["<b>Caddy</b><br><i>API Gateway</i>"]
Caddy --> Services["<b>Services</b><br><i>PostgREST, Swagger UI + more</i>"]
Services --> Postgres["<b>Postgres</b>"]
- Solo developers who want full backend control
- Startups building fast and lean
- Teams that value transparency and modularity
- Enterprises that prefer composable infrastructure
-
Clone your repository and start SuperStack:
git clone https://github.com/yourname/myapp.git
cd myapp
cp example.env .env
docker compose up -d
Open http://localhost:8000/openapi/ to view your Swagger UI.
Explore the full documentation:
📖 SuperStack Guide — Everything you need to install, configure, and use SuperStack out of the box.
🛠️ Developer Wiki — A collection of integrations to add features like authentication, messaging queues, Stripe webhooks, and more.