Skip to Content
Prisma

Prisma

  1. init prisma
npx prisma init
  1. edit setting
// This is your Prisma schema file, // learn more about it in the docs: https://pris.ly/d/prisma-schema generator client { provider = "prisma-client-js" } datasource db { provider = "mysql" url = env("DATABASE_URL") }
# .env # Environment variables declared in this file are automatically made available to Prisma. # See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema # Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB. # See the documentation for all the connection string options: https://pris.ly/d/connection-strings DATABASE_URL="mysql://johndoe:randompassword@localhost:5432/mydb?schema=public"
  1. set prisma
npx prisma db pull npx prisma generate
  1. install package
npm install @prisma/client prisma
Last updated on