├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── extensions.json ├── README.md ├── apps ├── .gitkeep ├── basic-auth │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── app.service.spec.ts │ │ │ └── app.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── auth │ │ │ ├── auth.module.ts │ │ │ └── basic.strategy.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── bull-separate-apps-consumer │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── src │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── main.ts │ │ └── worker │ │ │ ├── worker.module.ts │ │ │ └── worker.service.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── bull-separate-apps-producer │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── app.service.spec.ts │ │ │ └── app.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── form-data-guard │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── app.service.spec.ts │ │ │ ├── app.service.ts │ │ │ └── form.guard.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── graphql-file-upload │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── app.resolver.ts │ │ │ ├── app.service.spec.ts │ │ │ └── app.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── nest-commander │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── app.module.ts │ │ │ ├── task.command.ts │ │ │ └── task.questions.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── socket-subject │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── src │ │ ├── app │ │ │ ├── .gitkeep │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.gateway.ts │ │ │ ├── app.module.ts │ │ │ ├── app.service.spec.ts │ │ │ └── app.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── sockets-with-ws │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── src │ ├── app │ │ ├── .gitkeep │ │ ├── app.controller.spec.ts │ │ ├── app.controller.ts │ │ ├── app.gateway.spec.ts │ │ ├── app.gateway.ts │ │ ├── app.module.ts │ │ ├── app.service.spec.ts │ │ └── app.service.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ └── main.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── docker-compose.yml ├── jest.config.ts ├── jest.preset.js ├── libs └── .gitkeep ├── migrations.json ├── nx.json ├── package.json ├── pnpm-lock.yaml ├── tools ├── generators │ └── .gitkeep └── tsconfig.tools.json ├── tsconfig.base.json ├── tsconfig.json └── workspace.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/README.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic-auth/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/.eslintrc.json -------------------------------------------------------------------------------- /apps/basic-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/README.md -------------------------------------------------------------------------------- /apps/basic-auth/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/jest.config.ts -------------------------------------------------------------------------------- /apps/basic-auth/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic-auth/src/app/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/src/app/app.controller.spec.ts -------------------------------------------------------------------------------- /apps/basic-auth/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/src/app/app.controller.ts -------------------------------------------------------------------------------- /apps/basic-auth/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/basic-auth/src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /apps/basic-auth/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/src/app/app.service.ts -------------------------------------------------------------------------------- /apps/basic-auth/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/basic-auth/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/src/auth/auth.module.ts -------------------------------------------------------------------------------- /apps/basic-auth/src/auth/basic.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/src/auth/basic.strategy.ts -------------------------------------------------------------------------------- /apps/basic-auth/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/basic-auth/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/basic-auth/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/src/main.ts -------------------------------------------------------------------------------- /apps/basic-auth/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/tsconfig.app.json -------------------------------------------------------------------------------- /apps/basic-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/tsconfig.json -------------------------------------------------------------------------------- /apps/basic-auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/basic-auth/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/.eslintrc.json -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/README.md -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/jest.config.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/src/main.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/src/worker/worker.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/src/worker/worker.module.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/src/worker/worker.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/src/worker/worker.service.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/tsconfig.app.json -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/tsconfig.json -------------------------------------------------------------------------------- /apps/bull-separate-apps-consumer/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-consumer/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/.eslintrc.json -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/README.md -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/jest.config.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/app/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/src/app/app.controller.spec.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/src/app/app.controller.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/src/app/app.service.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/src/main.ts -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/tsconfig.app.json -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/tsconfig.json -------------------------------------------------------------------------------- /apps/bull-separate-apps-producer/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/bull-separate-apps-producer/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/form-data-guard/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/.eslintrc.json -------------------------------------------------------------------------------- /apps/form-data-guard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/README.md -------------------------------------------------------------------------------- /apps/form-data-guard/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/jest.config.ts -------------------------------------------------------------------------------- /apps/form-data-guard/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/form-data-guard/src/app/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/src/app/app.controller.spec.ts -------------------------------------------------------------------------------- /apps/form-data-guard/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/src/app/app.controller.ts -------------------------------------------------------------------------------- /apps/form-data-guard/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/form-data-guard/src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /apps/form-data-guard/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/src/app/app.service.ts -------------------------------------------------------------------------------- /apps/form-data-guard/src/app/form.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/src/app/form.guard.ts -------------------------------------------------------------------------------- /apps/form-data-guard/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/form-data-guard/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/form-data-guard/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/form-data-guard/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/src/main.ts -------------------------------------------------------------------------------- /apps/form-data-guard/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/tsconfig.app.json -------------------------------------------------------------------------------- /apps/form-data-guard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/tsconfig.json -------------------------------------------------------------------------------- /apps/form-data-guard/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/form-data-guard/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/graphql-file-upload/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/.eslintrc.json -------------------------------------------------------------------------------- /apps/graphql-file-upload/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/README.md -------------------------------------------------------------------------------- /apps/graphql-file-upload/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/jest.config.ts -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/app/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/src/app/app.controller.spec.ts -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/src/app/app.controller.ts -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/app/app.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/src/app/app.resolver.ts -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/src/app/app.service.ts -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/graphql-file-upload/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/src/main.ts -------------------------------------------------------------------------------- /apps/graphql-file-upload/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/tsconfig.app.json -------------------------------------------------------------------------------- /apps/graphql-file-upload/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/tsconfig.json -------------------------------------------------------------------------------- /apps/graphql-file-upload/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/graphql-file-upload/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/nest-commander/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/.eslintrc.json -------------------------------------------------------------------------------- /apps/nest-commander/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/README.md -------------------------------------------------------------------------------- /apps/nest-commander/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/jest.config.ts -------------------------------------------------------------------------------- /apps/nest-commander/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/nest-commander/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/nest-commander/src/app/task.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/src/app/task.command.ts -------------------------------------------------------------------------------- /apps/nest-commander/src/app/task.questions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/src/app/task.questions.ts -------------------------------------------------------------------------------- /apps/nest-commander/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/nest-commander/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/nest-commander/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/nest-commander/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/src/main.ts -------------------------------------------------------------------------------- /apps/nest-commander/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/tsconfig.app.json -------------------------------------------------------------------------------- /apps/nest-commander/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/tsconfig.json -------------------------------------------------------------------------------- /apps/nest-commander/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/nest-commander/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/socket-subject/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/.eslintrc.json -------------------------------------------------------------------------------- /apps/socket-subject/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/jest.config.ts -------------------------------------------------------------------------------- /apps/socket-subject/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/socket-subject/src/app/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/src/app/app.controller.spec.ts -------------------------------------------------------------------------------- /apps/socket-subject/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/src/app/app.controller.ts -------------------------------------------------------------------------------- /apps/socket-subject/src/app/app.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/src/app/app.gateway.ts -------------------------------------------------------------------------------- /apps/socket-subject/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/socket-subject/src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /apps/socket-subject/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/src/app/app.service.ts -------------------------------------------------------------------------------- /apps/socket-subject/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/socket-subject/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/socket-subject/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/socket-subject/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/src/main.ts -------------------------------------------------------------------------------- /apps/socket-subject/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/tsconfig.app.json -------------------------------------------------------------------------------- /apps/socket-subject/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/tsconfig.json -------------------------------------------------------------------------------- /apps/socket-subject/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/socket-subject/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/sockets-with-ws/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/.eslintrc.json -------------------------------------------------------------------------------- /apps/sockets-with-ws/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/jest.config.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/app/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/src/app/app.controller.spec.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/app/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/src/app/app.controller.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/app/app.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/src/app/app.gateway.spec.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/app/app.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/src/app/app.gateway.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/app/app.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/src/app/app.service.spec.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/app/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/src/app/app.service.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /apps/sockets-with-ws/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/src/main.ts -------------------------------------------------------------------------------- /apps/sockets-with-ws/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/tsconfig.app.json -------------------------------------------------------------------------------- /apps/sockets-with-ws/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/tsconfig.json -------------------------------------------------------------------------------- /apps/sockets-with-ws/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/apps/sockets-with-ws/tsconfig.spec.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/migrations.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tools/generators/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base.json" 3 | } 4 | -------------------------------------------------------------------------------- /workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcdo29/nest-samples/HEAD/workspace.json --------------------------------------------------------------------------------