Production-ready example applications showcasing Temps SDK integrations. Each example is a self-contained project you can clone and deploy.
| Example |
Stack |
Description |
| observability-starter |
Next.js 16, React 19, PostgreSQL |
One-deploy demo wiring Temps analytics, error tracking, tracing, and a database — the fastest way to see Temps in action |
| nextjs-saas |
Next.js 16, React 19, Stripe, PostgreSQL |
SaaS boilerplate with auth, billing, and dashboard |
| docs-template |
Next.js 16, React 19, MDX |
Documentation site with API reference and blog |
| sveltekit |
SvelteKit 2, Svelte 5, Tailwind v4 |
SaaS landing page with SSR |
| Example |
Stack |
Description |
| vite-react |
Vite 6, React 19, Tailwind v4, shadcn/ui |
Landing page with static assets |
| rsbuild-react |
Rsbuild, React 19, Tailwind v4, shadcn/ui |
Product showcase with static assets |
| astro |
Astro 5, Tailwind v4 |
Developer portfolio (static site) |
Minimal one-file-per-language apps — the smallest thing that builds and serves
a request. See examples/starters for the full list and
for which ones nixpacks can currently build.
| Starter |
Stack |
| starters/nodejs |
Express, Fastify, Hono, NestJS |
| starters/python |
Flask, FastAPI, Django |
| starters/go |
net/http, Gin |
| starters/ruby |
Rails 8 |
| starters/php |
Plain PHP, Laravel 12 |
| starters/java, dotnet, elixir, swift, rust, deno, bun |
one minimal app each |
| Example |
Stack |
Description |
| drop-runtime-fixtures |
.NET, Java, Python, Rust, Go |
Minimal manifest-only services for /drop zero-config deployment tests |
Each example lives in its own directory under examples/ with its own README and setup instructions.
# Clone the repo
git clone https://github.com/gotempsh/temps-examples.git
# Frontend / Fullstack examples
cd temps-examples/examples/vite-react
bun install && bun run dev
# Docker examples
cd temps-examples/examples/docker/node-api
docker build -t my-app .
docker run -p 3000:3000 -e POSTGRES_URL=... my-app
- Fork the repository
- Create a new example under
examples/
- Include a
README.md with setup instructions and a .env.example
- Open a pull request
MIT