├── .dockerignore ├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .prettierrc ├── .utils ├── api-client-generator-launcher.js └── dev-dummy-page-generator.js ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── Dockerfile ├── LICENSE ├── README.md ├── app.json ├── client ├── .gitignore ├── .proxy.conf.json ├── README.md ├── angular.json ├── karma.conf.js ├── package.json ├── public │ ├── .gitkeep │ └── favicon.ico ├── src │ ├── app │ │ ├── app.component.html │ │ ├── app.component.scss │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.routes.ts │ ├── environments │ │ ├── environment.development.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── material.module.ts │ ├── styles.scss │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── heroku.yml ├── package.json ├── render.yaml └── server ├── .gitignore ├── README.md ├── eslint.config.mjs ├── nest-cli.json ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── entities │ └── article.entity.ts ├── helper.ts ├── main.ts └── openapi-doc-generator.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.prettierrc -------------------------------------------------------------------------------- /.utils/api-client-generator-launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.utils/api-client-generator-launcher.js -------------------------------------------------------------------------------- /.utils/dev-dummy-page-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.utils/dev-dummy-page-generator.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/app.json -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/.proxy.conf.json -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/README.md -------------------------------------------------------------------------------- /client/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/angular.json -------------------------------------------------------------------------------- /client/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/karma.conf.js -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/app/app.component.html -------------------------------------------------------------------------------- /client/src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/app/app.component.scss -------------------------------------------------------------------------------- /client/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /client/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/app/app.component.ts -------------------------------------------------------------------------------- /client/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/app/app.routes.ts -------------------------------------------------------------------------------- /client/src/environments/environment.development.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: false, 3 | }; 4 | -------------------------------------------------------------------------------- /client/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/index.html -------------------------------------------------------------------------------- /client/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/main.ts -------------------------------------------------------------------------------- /client/src/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/material.module.ts -------------------------------------------------------------------------------- /client/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/styles.scss -------------------------------------------------------------------------------- /client/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/src/test.ts -------------------------------------------------------------------------------- /client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/tsconfig.app.json -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/client/tsconfig.spec.json -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- 1 | run: npm start 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/package.json -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/render.yaml -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/README.md -------------------------------------------------------------------------------- /server/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/eslint.config.mjs -------------------------------------------------------------------------------- /server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/nest-cli.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/src/app.controller.spec.ts -------------------------------------------------------------------------------- /server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/src/app.controller.ts -------------------------------------------------------------------------------- /server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/src/app.module.ts -------------------------------------------------------------------------------- /server/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/src/app.service.ts -------------------------------------------------------------------------------- /server/src/entities/article.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/src/entities/article.entity.ts -------------------------------------------------------------------------------- /server/src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/src/helper.ts -------------------------------------------------------------------------------- /server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/src/main.ts -------------------------------------------------------------------------------- /server/src/openapi-doc-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/src/openapi-doc-generator.ts -------------------------------------------------------------------------------- /server/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /server/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/test/jest-e2e.json -------------------------------------------------------------------------------- /server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/tsconfig.build.json -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mugifly/angular-nest/HEAD/server/tsconfig.json --------------------------------------------------------------------------------