klavenjones / Nestjs-supabase-starter

A boilerplate bootstrapped with Nextjs, Supabase, and Clerk.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.tsx. The page auto-updates as you edit the file.

API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.ts.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

This project uses next/font to automatically optimize and load Inter, a custom Google Font.

Supabase and Clerk Setup

This project uses Clerk and Supabase. In order to use this project you need to set up projects for both Clerk, and Supabase.

Check out these Docs for integrating Clerk with Nextjs:

Clerk & Nextjs Setup

Here is a walkthrough for setting up your Nextjs application, with supabase.

Note: Ignore the Authentication portion, because we are using Clerk for authentication.

Supabase Nextjs walkthrough

Environment Variables

In order to use Clerk and Supabase you need to add these to the .env.local file.

NEXT_PUBLIC_SUPABASE_URL=Add Supabase URL

NEXT_PUBLIC_SUPABASE_ANON_KEY=Supabase anon key

NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=CLERK PUBLISHABLE KEY

CLERK_SECRET_KEY=Secret Key for CLERK Authentication

You can look to the .env.local.example file, for the needed variables. I suggest duplicating this file and renaming it to .env.local.

Testing

Run all unit tests:

npm run test

or

npm run test:watch

Linting

Run the linter:

npm run lint

Formatting

Check code format:

npm run prettier:check

Format codebase:

npm run prettier:write

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

About

A boilerplate bootstrapped with Nextjs, Supabase, and Clerk.


Languages

Language:TypeScript 92.2%Language:JavaScript 7.5%Language:CSS 0.3%