No description
Find a file
David Viejo 6e83f1d29b
Merge pull request #8 from gotempsh/feat/add-temps-yaml-health
Add .temps.yaml health check paths to Docker examples
2026-03-28 19:17:17 +01:00
examples Add .temps.yaml with health check paths to all Docker examples 2026-03-28 19:17:06 +01:00
README.md Update README with full examples table 2026-03-28 11:48:09 +01:00

Temps Examples

Production-ready example applications showcasing Temps SDK integrations. Each example is a self-contained project you can clone and deploy.

Examples

Fullstack

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

Frontend

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)

Docker

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

Getting Started

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

Contributing

  1. Fork the repository
  2. Create a new example under examples/
  3. Include a README.md with setup instructions and a .env.example
  4. Open a pull request

License

MIT