Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/hugocruzlfc/prisma-orm-course
- Owner: hugocruzlfc
- Created: 2023-12-12T08:51:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-12T11:38:44.000Z (about 1 year ago)
- Last Synced: 2023-12-12T12:34:34.886Z (about 1 year ago)
- Language: TypeScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```