# micro-service **Repository Path**: superscore/micro-service ## Basic Information - **Project Name**: micro-service - **Description**: 通过nestjs来实现的微服务项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-02-19 - **Last Updated**: 2024-02-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### Prisma ```bash // 重置数据库 npx prisma migrate reset // 创建一个service 不生成测试文件 nest g service prisma --no-spec // 通过schema.prisma文件生成数据库迁移 npx prisma migrate dev --name init ```