Installing
npm install
# or
yarn installRunning the development server:
npm run dev
# or
yarn devAdding Environment Variables
add Supabase Database url to .env file as
DATABASE_URL = "your Supabase Database url" Creating Prisma Schema
npx prisma generate
# or
yarn prisma generateViewing the generated schema:
npx prisma studio
# or
yarn prisma studioOpen the url http://localhost:3000 with your browser to see the result