Nextbase Lite is a simple Next.js 13 + Supabase boilerplate. It includes a Next.js 13 app with Typescript, Supabase and Tailwind CSS. It includes the all new app
folder, layout
components, React server components
and more!
- π Next.js 13 with async components
- π» Data fetching examples in React server and client components. Suspenseful data fetching with minimal loading screens.
- βοΈ React query setup configured
- π₯ React Hot Toast component
- π» Fully typed with Typescript. Includes automatic type generation for Supabase tables
- π¨ Tailwindcss
- π§ͺ Unit testing and integration testing setups built-in
- π Eslint, typescript, prettier, postcss configured for dev and test environments
- π Automatic sitemap generation
- π SEO metadata, JSON-LD and Open Graph tags with NEXT SEO
- βοΈ Semantic release with Automatic changelog generation
- π¨ Prettier Code formatter
- π Minimal styling
- π Codebase which is easy to read and modify
- Clone the repo
- Install dependencies with
yarn
- Create a Supabase account if you don't have one already
- Create a new project in Supabase
- Link Supabase to your project using
yarn supabase link --project-ref <project-ref>
. You can get your project ref from the Supabase Project dashboard (Project Settings -> API) - Duplicate
.env.local.example
and rename it to.env.local
and add the Project ref, Supabase URL and anon key. - Push the database schema to your Supabase project using
yarn supabase db push
. - Generate types for your Supabase tables using
yarn generate:types:local
. - Run
yarn dev
to start the development server.
- Unit test using
yarn test
- End-to-end test using
yarn test:e2e
This is a simple Next.js project. Deployment is the same as any other Next.js project. You can deploy it to Vercel, Netlify, or any other hosting provider.
Contributions are welcome. Please open an issue or a PR.
MIT
Checkout the TROUBLESHOOTING.md file for common issues.
Also checkout our premium boilerplate with more features. It includes a fully functional authentication system, user profiles, organisations, row level security, and more.