Production-ready example applications showcasing Temps SDK integrations. Each example is a self-contained project you can clone and deploy.
| Example | Stack | Description |
|---|---|---|
| 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) |
| Example | Stack | Description |
|---|---|---|
| docker/node-api | Bun, PostgreSQL | Todo REST API |
| docker/python-fastapi | FastAPI, MongoDB, Redis | Bookmarks API with caching |
| docker/go-services | Go, PostgreSQL | Users API with pgx |
| docker/rust-axum | Rust Axum, PostgreSQL | Notes/snippets API |
| docker/java-spring | Spring Boot 3.5, PostgreSQL, Redis | Contacts API with JPA |
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.mdwith setup instructions and a.env.example - Open a pull request
MIT