Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 601 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 601 Bytes

Express-Boilerplate

Yarn Scripts

# run dev server
yarn dev

# build the server
yarn build

# this will run the tsc compiler
yarn tsc

# this will run the prod server
yarn prod

Prisma Setup

# to reinstall prisma
yarn add --dev prisma
yarn add @prisma/client

# initialize prisma
yarn prisma init

# this will generate types for typescript run this when you update your schema.prisma
yarn prisma generate

# introspect prisma
yarn prisma introspect