1.6.0 • Published 2 months ago

@fleekxyz/prisma v1.6.0

Weekly downloads
-
License
-
Repository
-
Last release
2 months ago

Fleek Prisma Databases

Fleek Prisma handles the Prisma schema generation and the Prisma client generation.

Stack

  • Prisma NodeJS + TypeScript ORM.
  • PlanetScale as serverless database that is MySQL compatible.
  • Schemix as easy-to-use TypeScript layer over designing Prisma schemas, allowing for modularization, mixins, and other added capabilities.

Connection details

Check datasource db in schema.prisma, where connection details are provided via env. Name on env can be checked in url field.

datasource db {
  provider     = "mysql"
  url          = env("PRISMA_DATABASE_URL")
  relationMode = "prisma"
}