# nest-service-project **Repository Path**: simba_ch/nest-service-project ## Basic Information - **Project Name**: nest-service-project - **Description**: NestJS + TypeScript + prisma 的服务端代码 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-11-15 - **Last Updated**: 2023-11-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: Nestjs ## README ## Description [NestJS](https://docs.nestjs.com/) + TypeScript + prisma
[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository. [Prisma Client API reference](https://www.prisma.io/docs/reference/api-reference/prisma-client-reference#find-orders-that-exactly-match-the-given-shippingaddress) ## Installation ```bash $ npm install ``` ## create database ```bash npx prisma db push ``` ## create database data ``` npx prisma db seed ``` ## Running the app ```bash # development $ npm run start # watch mode $ npm run start:dev # production mode $ npm run start:prod ``` ## open api docs localhost:3000/docs ## Test ```bash # unit tests $ npm run test # e2e tests $ npm run test:e2e # test coverage $ npm run test:cov ``` ## 数据库可视化 在项目终端运行以下命令: ```bash npx prisma studio ```