Developing with Prisma

Installation
SKILL.md

Developing with Prisma

Quick Start

// prisma/schema.prisma
generator client {
  provider = "prisma-client-js"
}

datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
}
Installs
GitHub Stars
4
First Seen
Developing with Prisma — doanchienthangdev/omgkit