A modern, production-ready template for building full-stack React applications using React Router.
- 🚀 Server-side rendering
- ⚡️ Hot Module Replacement (HMR)
- 📦 Asset bundling and optimization
- 🔄 Data loading and mutations
- 🔒 TypeScript by default
- 🎉 TailwindCSS for styling
- 🔐 Better Auth integration
- 🗄️ Drizzle ORM with D1 Database
- 📡 tRPC API
- 📖 React Router docs
Install the dependencies:
npm installStart the development server with HMR:
npm run devYour application will be available at http://localhost:5173.
This project uses Better Auth for authentication. The authentication secret is stored in .dev.vars for local development and has been pre-configured with a secure random value.
For production deployment, set the secret using Wrangler:
# Generate a new secret
openssl rand -base64 32
# Set the secret in Cloudflare
wrangler secret put BETTER_AUTH_SECRETThe authentication API is available at /api/auth/*.
Preview the production build locally:
npm run previewCreate a production build:
npm run buildDeployment is done using the Wrangler CLI.
To build and deploy directly to production:
npm run deployTo deploy a preview URL:
npx wrangler versions uploadYou can then promote a version to production after verification or roll it out progressively.
npx wrangler versions deployThis template comes with Tailwind CSS already configured for a simple default starting experience. You can use whatever CSS framework you prefer.
Built with ❤️ using React Router.