This is a project that was created to learn about NestJS. This project contains a user module with CRUD operations.
- Clone the repository.
- Do
npm install - Go to neon.tech, login/register and create a project. Choose prisma to be ORM. Copy the
.envvalue from the dashboard and update it in code. - Initialize prisma using
npx prisma migrate dev --name update-schema. This will create a migrations folder in prisma folder. - Run locally using
npm run start: dev - Test the endpoints via postman (baseURL: http://localhost:3000/api)