This is a T3 Stack project bootstrapped with create-t3-app.
-
You need these 3 environment variable, see
.env.example.DATABASE_URLNEXT_PUBLIC_CLERK_PUBLISHABLE_KEYCLERK_SECRET_KEY
-
Create a PostgreSQL database and get the database URL (this project use Supabase).
-
Create a Clerk account, setup a project, and get the
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEYandCLERK_SECRET_KEY. -
Create a
.envfile and add all the required variable.
- Fork and clone the repo locally.
- Make sure all the required environment variable is added in
.envfile. - Install dependencies with bun.
- Run
bunx prisma db pushto setup the database. - Run
bun devto start the app onlocalhost:3000