Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hugocruzlfc/prisma-orm-course

Tutorial about Prisma ORM.
https://github.com/hugocruzlfc/prisma-orm-course

Last synced: about 12 hours ago
JSON representation

Tutorial about Prisma ORM.

Awesome Lists containing this project

README

        

## Prisma workflow

```bash
# Install dependencies
npm i -D ts-node typescript @types/node
npm i prisma -D
npm i @prisma/client

# Run prisma
npx prisma init --datasource-provider sqlite
npx prisma generate
npx prisma db push
npx prisma migrate dev --name init
```