DEV Community

Discussion on: Simple example custom repository with NestJS 7.x/8.x and TypeORM 😻

Collapse
 
robertsci profile image
robertsci • Edited

In case someone wanted to have the folder structure. For me it worked like this.

src
|---products
|----------|----- dto
|----------|-----|---- create-product-dto.ts
|----------|-----|---- update-product-dto.ts

|----------|-----entities
|----------|-----|---products.entity.ts
|----------|-----repositories
|----------|-----|----products.repository.ts
|----------|-----products.controller.ts

|----------|-----products.module.ts
|----------|-----products.service.ts

Here you can check how to also add swagger after you make sure your project starts
docs.nestjs.com/openapi/introduction

Thank you to the author !