├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── main.ts ├── typeorm │ └── entities │ │ ├── Post.ts │ │ ├── Profile.ts │ │ └── User.ts ├── users │ ├── controllers │ │ └── users │ │ │ ├── users.controller.spec.ts │ │ │ └── users.controller.ts │ ├── dtos │ │ ├── CreateUser.dto.ts │ │ ├── CreateUserPost.dto.ts │ │ ├── CreateUserProfile.dto.ts │ │ └── UpdateUser.dto.ts │ ├── services │ │ └── users │ │ │ ├── users.service.spec.ts │ │ │ └── users.service.ts │ └── users.module.ts └── utils │ └── types.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/README.md -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/typeorm/entities/Post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/typeorm/entities/Post.ts -------------------------------------------------------------------------------- /src/typeorm/entities/Profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/typeorm/entities/Profile.ts -------------------------------------------------------------------------------- /src/typeorm/entities/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/typeorm/entities/User.ts -------------------------------------------------------------------------------- /src/users/controllers/users/users.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/controllers/users/users.controller.spec.ts -------------------------------------------------------------------------------- /src/users/controllers/users/users.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/controllers/users/users.controller.ts -------------------------------------------------------------------------------- /src/users/dtos/CreateUser.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/dtos/CreateUser.dto.ts -------------------------------------------------------------------------------- /src/users/dtos/CreateUserPost.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/dtos/CreateUserPost.dto.ts -------------------------------------------------------------------------------- /src/users/dtos/CreateUserProfile.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/dtos/CreateUserProfile.dto.ts -------------------------------------------------------------------------------- /src/users/dtos/UpdateUser.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/dtos/UpdateUser.dto.ts -------------------------------------------------------------------------------- /src/users/services/users/users.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/services/users/users.service.spec.ts -------------------------------------------------------------------------------- /src/users/services/users/users.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/services/users/users.service.ts -------------------------------------------------------------------------------- /src/users/users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/users/users.module.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuyy/nestjs-typeorm-mysql-course-repository/HEAD/yarn.lock --------------------------------------------------------------------------------