/Windup

Windup is progress tracking application built using Next JS. I've used optimistic operations to improve performance.

Primary LanguageTypeScript

windup

Feautures

  • Performed optimistic operations to improve performance.

Install packages

npm i

Setup .env file

# CLERK ENV CONFIGS
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/
# Data Base
DATABASE_URL="DATABASE-CONNECTION-STRING"

Start the app

npm install
npm run dev

Setup Prisma

npx prisma generate
npx prisma db push