├── .editorconfig ├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ ├── dependabot-pr.yml │ ├── mega-linter.yml │ └── tests.yml ├── .gitignore ├── .kodiak.toml ├── .mega-linter.yml ├── .prettierrc ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── nest-cli.json ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── data-source.ts ├── main.ts ├── repl.ts └── task │ ├── dto │ ├── task-create.dto.ts │ └── task-update.dto.ts │ ├── task.controller.spec.ts │ ├── task.controller.ts │ ├── task.entity.ts │ ├── task.module.ts │ ├── task.repository.ts │ ├── task.service.spec.ts │ └── task.service.ts ├── test ├── app.e2e-spec.ts ├── jest-e2e.json └── task.e2e-spec.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.github/workflows/dependabot-pr.yml -------------------------------------------------------------------------------- /.github/workflows/mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.github/workflows/mega-linter.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.gitignore -------------------------------------------------------------------------------- /.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.kodiak.toml -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.mega-linter.yml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/README.md -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/nest-cli.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/data-source.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/repl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/repl.ts -------------------------------------------------------------------------------- /src/task/dto/task-create.dto.ts: -------------------------------------------------------------------------------- 1 | export class TaskCreate { 2 | readonly title: string; 3 | } 4 | -------------------------------------------------------------------------------- /src/task/dto/task-update.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/task/dto/task-update.dto.ts -------------------------------------------------------------------------------- /src/task/task.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/task/task.controller.spec.ts -------------------------------------------------------------------------------- /src/task/task.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/task/task.controller.ts -------------------------------------------------------------------------------- /src/task/task.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/task/task.entity.ts -------------------------------------------------------------------------------- /src/task/task.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/task/task.module.ts -------------------------------------------------------------------------------- /src/task/task.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/task/task.repository.ts -------------------------------------------------------------------------------- /src/task/task.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/task/task.service.spec.ts -------------------------------------------------------------------------------- /src/task/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/src/task/task.service.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /test/task.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/test/task.e2e-spec.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leosuncin/nest-typeorm-custom-repository/HEAD/yarn.lock --------------------------------------------------------------------------------