├── .gitignore ├── chat-api ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package.json ├── src │ ├── app.gateway.spec.ts │ ├── app.gateway.ts │ ├── app.module.ts │ └── main.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json ├── chat-web-para-desenvolver-com-a-aula ├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── README.md ├── package.json ├── prettier.config.js ├── public │ ├── index.html │ └── robots.txt ├── src │ ├── App.tsx │ ├── index.tsx │ ├── pages │ │ └── Home │ │ │ ├── index.tsx │ │ │ └── styles.ts │ ├── react-app-env.d.ts │ ├── setupTests.ts │ └── styles │ │ └── global.ts └── tsconfig.json └── chat-web ├── .editorconfig ├── .env ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── README.md ├── package.json ├── prettier.config.js ├── public ├── index.html └── robots.txt ├── src ├── App.tsx ├── index.tsx ├── pages │ └── Home │ │ ├── index.tsx │ │ └── styles.ts ├── react-app-env.d.ts ├── setupTests.ts └── styles │ └── global.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /chat-api/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/.eslintrc.js -------------------------------------------------------------------------------- /chat-api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/.gitignore -------------------------------------------------------------------------------- /chat-api/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/.prettierrc -------------------------------------------------------------------------------- /chat-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/README.md -------------------------------------------------------------------------------- /chat-api/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/nest-cli.json -------------------------------------------------------------------------------- /chat-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/package.json -------------------------------------------------------------------------------- /chat-api/src/app.gateway.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/src/app.gateway.spec.ts -------------------------------------------------------------------------------- /chat-api/src/app.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/src/app.gateway.ts -------------------------------------------------------------------------------- /chat-api/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/src/app.module.ts -------------------------------------------------------------------------------- /chat-api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/src/main.ts -------------------------------------------------------------------------------- /chat-api/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /chat-api/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/test/jest-e2e.json -------------------------------------------------------------------------------- /chat-api/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/tsconfig.build.json -------------------------------------------------------------------------------- /chat-api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-api/tsconfig.json -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/.editorconfig -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js 2 | node_modules 3 | build 4 | /src/react-app-env.d.ts -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/.eslintrc.json -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/.gitignore -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/README.md -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/package.json -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/prettier.config.js -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/public/index.html -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/public/robots.txt -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/src/App.tsx -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/src/index.tsx -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/src/pages/Home/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/src/pages/Home/styles.ts -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/src/setupTests.ts -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/src/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/src/styles/global.ts -------------------------------------------------------------------------------- /chat-web-para-desenvolver-com-a-aula/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web-para-desenvolver-com-a-aula/tsconfig.json -------------------------------------------------------------------------------- /chat-web/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/.editorconfig -------------------------------------------------------------------------------- /chat-web/.env: -------------------------------------------------------------------------------- 1 | SKIP_PREFLIGHT_CHECK=true -------------------------------------------------------------------------------- /chat-web/.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js 2 | node_modules 3 | build 4 | /src/react-app-env.d.ts -------------------------------------------------------------------------------- /chat-web/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/.eslintrc.json -------------------------------------------------------------------------------- /chat-web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/.gitignore -------------------------------------------------------------------------------- /chat-web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/README.md -------------------------------------------------------------------------------- /chat-web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/package.json -------------------------------------------------------------------------------- /chat-web/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/prettier.config.js -------------------------------------------------------------------------------- /chat-web/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/public/index.html -------------------------------------------------------------------------------- /chat-web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/public/robots.txt -------------------------------------------------------------------------------- /chat-web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/src/App.tsx -------------------------------------------------------------------------------- /chat-web/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/src/index.tsx -------------------------------------------------------------------------------- /chat-web/src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /chat-web/src/pages/Home/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/src/pages/Home/styles.ts -------------------------------------------------------------------------------- /chat-web/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /chat-web/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/src/setupTests.ts -------------------------------------------------------------------------------- /chat-web/src/styles/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/src/styles/global.ts -------------------------------------------------------------------------------- /chat-web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewronscki/nestjs-react-chat-real-time/HEAD/chat-web/tsconfig.json --------------------------------------------------------------------------------