The ultimate full-stack starter template. Auth, Database, Type-safety, and Performance — all pre-configured.
Built on a foundation of modern, battle-tested technologies.
Everything you need to build production-ready applications.
Pre-configured email/password and social login flows.
Optimized build and runtime performance with Vite and Bun.
From database to frontend, your types are always in sync.
Hot module replacement, great tooling, and simple configuration.
Beautiful, accessible components built with Shadcn UI.
Seamless server-side logic integration with TanStack Start.
A complete invite-only workflow is built-in. Define who gets access to your application.
Potential users submit a request via the public /request-access form, providing their email, desired username, and a reason for access.
Admins view pending requests in the protected Dashboard. They can review user details and reasons before making a decision.
Upon approval, an account is automatically created. The user receives an email notification (configurable) and can sign in immediately.
Follow these steps to get your project up and running.
git clone https://github.com/podalls/podalls-demo.git
cd podalls-demobun installCopy the example env file and update your credentials.
cp .env.example .envbun db:generate
bun db:pushbun dev