Examples
Examples
Real-world examples built with QUESTPIE.
These examples demonstrate real-world QUESTPIE patterns using actual code from the repository.
TanStack Barbershop
A full booking application built with TanStack Start + QUESTPIE. Features:
- 7 collections with complex relations (services, barbers, appointments, products, orders, pages, blog posts)
- Server routes for booking logic and availability checking
- Background jobs for email notifications and appointment reminders
- Custom services (blog utilities, booking engine)
- Admin dashboard with stats, charts, and appointment timelines
- Block-based page builder for marketing pages
- Multi-language support (English + Slovak)
- Live preview for content editing
create-questpie Template
The create-questpie scaffolding tool generates a ready-to-run project with:
- A
postscollection with title, slug, content, and published status - A
site_settingsglobal with site name and description - Admin panel with sidebar, dashboard, and login page
- Docker Compose for PostgreSQL
- TanStack Start + Vite development setup
bunx create-questpie my-app
cd my-app
docker compose up -d
bun run db:migrate
bun run devSee First App for the full walkthrough.