This is a T3 Stack project with drizzle and clerk. This is personally my favourite tech stack and hence I created a template I can reuse for myself. Made it public so anyone can use it!
Run the following command to install all node modules, personally, I use pnpm
but you may use any package manager you deem fit.
pnpm install
Create a .env file with the following env variables
# Drizzle
DATABASE_URL="postgres://username:12345@localhost:5432/t3-drizzle-clerk"
#Clerk
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=PUBLICKEY
CLERK_SECRET_KEY=SECRETKEY
Run the project using the following command, I have set it up in a way that the migrations will automatically run!
pnpm run dev