Prisma API with basic CRUD for posts
npm run dev-setupThis command: 1.Downloads the postgres image (Docker is required) 2.Creates the container 3.Generate the DB schema 4.Populate DB with seed
npm run docker:run:postgresCreates schema.prisma
npx prisma initGenerates Prisma Client (TS library with type-sage db access) based on Prisma Schema
npx prisma generateUpdates DB schema to match Prisma Schema
npx prisma db pushOpens GUI for Database
npx prisma studionpm run seednpm run build && npm run devnpm run testdocker build -t workflow-api .
docker run -p 3001:3001 workflow-api
docker run -it --entrypoint sh workflow-apiThis README was generated with ❤️ by readme-md-generator