Boilerplates reduce friction. They help teams start from structure instead of chaos.
nextjs-supabase/ — Next.js + Supabase auth, layout, deploy configsflask-firebase/ — Flask + Firebase, minimal templatesfastapi-supabase/ — FastAPI + CORS + /healthz + fixture mode (?demo=1)The folder patterns below are starting sketches, not finished apps. Pick the closest working starter above, rename it, cut everything outside the golden-path demo.
ai-saas/
├── app/
├── components/
├── lib/
├── prompts/
├── public/
└── README.md
dashboard/
├── app/
├── components/
├── data/
├── charts/
└── README.md
chat-app/
├── app/
├── components/
├── lib/
├── realtime/
└── README.md
marketplace/
├── app/
├── components/
├── listings/
├── payments/
└── README.md
rag-app/
├── app/
├── components/
├── embeddings/
├── retrieval/
└── README.md
ai-assistant/
├── app/
├── components/
├── agents/
├── memory/
└── README.md
college-platform/
├── app/
├── components/
├── auth/
├── submissions/
└── README.md
resume-analyzer/
├── app/
├── components/
├── parsing/
├── scoring/
└── README.md
portfolio/
├── app/
├── components/
├── content/
└── README.md
auth-starter/
├── app/
├── components/
├── auth/
└── README.md