Routing layer for docs.stevedores.org. Aggregates per-repo documentation sites and serves them under path-based routing.
Each repository in stevedores-org has its own docs-site/ directory with a self-contained React + Vite + Tailwind SPA. This repo aggregates them behind a single nginx reverse proxy:
| Path | Repo | Description |
|---|---|---|
/llama-rs/ |
llama.rs | Minimal LLM inference engine |
/oxidizedMLX/ |
oxidizedMLX | Rust-first MLX tensor runtime |
/oxidizedRAG/ |
oxidizedRAG | High-performance GraphRAG |
/oxidizedgraph/ |
oxidizedgraph | Agent orchestration framework |
docker compose up --build -dThis builds all four docs sites from source and serves them on port 80.
Each site can be developed independently:
cd /path/to/repo/docs-site
bun install
bun run dev- Proxy: nginx:alpine
- Docs sites: React 19 + Vite 7 + Tailwind CSS v4 + Bun
- Build: Multi-stage Docker (oven/bun:1 -> nginx:alpine)