├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── actions │ ├── affected-projects │ │ ├── action.yml │ │ ├── index.js │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ └── uuid │ │ │ ├── .package-lock.json │ │ │ ├── @actions │ │ │ │ ├── core │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── command.d.ts │ │ │ │ │ │ ├── command.js │ │ │ │ │ │ ├── command.js.map │ │ │ │ │ │ ├── core.d.ts │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ ├── core.js.map │ │ │ │ │ │ ├── file-command.d.ts │ │ │ │ │ │ ├── file-command.js │ │ │ │ │ │ ├── file-command.js.map │ │ │ │ │ │ ├── oidc-utils.d.ts │ │ │ │ │ │ ├── oidc-utils.js │ │ │ │ │ │ ├── oidc-utils.js.map │ │ │ │ │ │ ├── path-utils.d.ts │ │ │ │ │ │ ├── path-utils.js │ │ │ │ │ │ ├── path-utils.js.map │ │ │ │ │ │ ├── summary.d.ts │ │ │ │ │ │ ├── summary.js │ │ │ │ │ │ ├── summary.js.map │ │ │ │ │ │ ├── utils.d.ts │ │ │ │ │ │ ├── utils.js │ │ │ │ │ │ └── utils.js.map │ │ │ │ │ └── package.json │ │ │ │ └── http-client │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ ├── auth.d.ts │ │ │ │ │ ├── auth.js │ │ │ │ │ ├── auth.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── interfaces.d.ts │ │ │ │ │ ├── interfaces.js │ │ │ │ │ ├── interfaces.js.map │ │ │ │ │ ├── proxy.d.ts │ │ │ │ │ ├── proxy.js │ │ │ │ │ └── proxy.js.map │ │ │ │ │ └── package.json │ │ │ ├── tunnel │ │ │ │ ├── .idea │ │ │ │ │ ├── encodings.xml │ │ │ │ │ ├── modules.xml │ │ │ │ │ ├── node-tunnel.iml │ │ │ │ │ ├── vcs.xml │ │ │ │ │ └── workspace.xml │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── tunnel.js │ │ │ │ └── package.json │ │ │ └── uuid │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ ├── bin │ │ │ │ │ └── uuid │ │ │ │ ├── esm-browser │ │ │ │ │ ├── index.js │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── nil.js │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── regex.js │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── sha1.js │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v35.js │ │ │ │ │ ├── v4.js │ │ │ │ │ ├── v5.js │ │ │ │ │ ├── validate.js │ │ │ │ │ └── version.js │ │ │ │ ├── esm-node │ │ │ │ │ ├── index.js │ │ │ │ │ ├── md5.js │ │ │ │ │ ├── nil.js │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── regex.js │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── sha1.js │ │ │ │ │ ├── stringify.js │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v35.js │ │ │ │ │ ├── v4.js │ │ │ │ │ ├── v5.js │ │ │ │ │ ├── validate.js │ │ │ │ │ └── version.js │ │ │ │ ├── index.js │ │ │ │ ├── md5-browser.js │ │ │ │ ├── md5.js │ │ │ │ ├── nil.js │ │ │ │ ├── parse.js │ │ │ │ ├── regex.js │ │ │ │ ├── rng-browser.js │ │ │ │ ├── rng.js │ │ │ │ ├── sha1-browser.js │ │ │ │ ├── sha1.js │ │ │ │ ├── stringify.js │ │ │ │ ├── umd │ │ │ │ │ ├── uuid.min.js │ │ │ │ │ ├── uuidNIL.min.js │ │ │ │ │ ├── uuidParse.min.js │ │ │ │ │ ├── uuidStringify.min.js │ │ │ │ │ ├── uuidValidate.min.js │ │ │ │ │ ├── uuidVersion.min.js │ │ │ │ │ ├── uuidv1.min.js │ │ │ │ │ ├── uuidv3.min.js │ │ │ │ │ ├── uuidv4.min.js │ │ │ │ │ └── uuidv5.min.js │ │ │ │ ├── uuid-bin.js │ │ │ │ ├── v1.js │ │ │ │ ├── v3.js │ │ │ │ ├── v35.js │ │ │ │ ├── v4.js │ │ │ │ ├── v5.js │ │ │ │ ├── validate.js │ │ │ │ └── version.js │ │ │ │ ├── package.json │ │ │ │ └── wrapper.mjs │ │ ├── package-lock.json │ │ └── package.json │ ├── deploy-api │ │ └── action.yml │ ├── docker-build │ │ └── action.yml │ ├── docker-prebuild │ │ └── action.yml │ └── install-dependencies │ │ └── action.yml └── workflows │ ├── check.yml │ └── publish.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── jest.config.ts ├── jest.preset.js ├── libs ├── local-deployment │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── check-deployment-requirements.ts │ │ ├── deploy-ingress-controller.ts │ │ ├── deploy-services.ts │ │ ├── index.ts │ │ └── setup-cluster.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nest-application │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nest-config │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── config.interfaces.ts │ │ │ ├── config.module.ts │ │ │ └── config.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nest-health │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── health.controller.ts │ │ │ └── health.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nest-rabbitmq │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── decorators │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── rpc.ts │ │ │ └── subscribe.ts │ │ │ ├── event │ │ │ └── event.ts │ │ │ ├── rabbitmq-exchange.util.ts │ │ │ ├── rabbitmq.interfaces.ts │ │ │ ├── rabbitmq.module.ts │ │ │ └── rabbitmq.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nest-redis │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── connection │ │ │ └── connection.ts │ │ │ ├── redis.interfaces.ts │ │ │ ├── redis.module.ts │ │ │ └── redis.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nest-typeorm-migrations │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── migration-generator.module.ts │ │ │ └── migration-generator.service.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── npx-build │ ├── .eslintrc.json │ ├── README.md │ ├── executors.json │ ├── generators.json │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ │ ├── executors │ │ │ └── build │ │ │ │ ├── executor.ts │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.json │ │ └── index.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── workspace │ ├── .eslintrc.json │ ├── README.md │ ├── executors.json │ ├── generators.json │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src │ ├── generators │ │ ├── app-generator │ │ │ ├── files │ │ │ │ ├── application │ │ │ │ │ ├── deployment │ │ │ │ │ │ ├── Dockerfile.ci │ │ │ │ │ │ ├── Dockerfile.local │ │ │ │ │ │ └── deployment-values.yaml │ │ │ │ │ ├── env │ │ │ │ │ │ └── .env │ │ │ │ │ └── src │ │ │ │ │ │ ├── app.module.ts__tmpl__ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ │ ├── main.ts__tmpl__ │ │ │ │ │ │ └── migrations.ts__tmpl__ │ │ │ │ ├── library-constants │ │ │ │ │ └── index.ts__tmpl__ │ │ │ │ ├── library-data-transfer-objects │ │ │ │ │ ├── index.ts__tmpl__ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── example.dto.ts__tmpl__ │ │ │ │ │ │ └── example.interfaces.ts__tmpl__ │ │ │ │ │ └── types.ts__tmpl__ │ │ │ │ └── library-service │ │ │ │ │ ├── index.ts__tmpl__ │ │ │ │ │ └── lib │ │ │ │ │ ├── __name__.controller.ts__tmpl__ │ │ │ │ │ ├── __name__.module.ts__tmpl__ │ │ │ │ │ └── __name__.service.ts__tmpl__ │ │ │ ├── generator.spec.ts │ │ │ ├── generator.ts │ │ │ ├── lib │ │ │ │ ├── add-migration-generation-target.ts │ │ │ │ ├── create-application-files.ts │ │ │ │ ├── create-constants-library-files.ts │ │ │ │ ├── create-dto-library-files.ts │ │ │ │ └── create-service-library-files.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ │ ├── app-library-generator │ │ │ ├── generator.spec.ts │ │ │ ├── generator.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ │ ├── configuration-generator │ │ │ ├── files │ │ │ │ ├── .github │ │ │ │ │ └── workflows │ │ │ │ │ │ ├── check.yaml │ │ │ │ │ │ └── deploy.yaml │ │ │ │ └── infrastructure │ │ │ │ │ ├── Dockerfile.prebuild │ │ │ │ │ ├── charts │ │ │ │ │ ├── ingress-controller │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── ingress-controller.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ └── node-service │ │ │ │ │ │ ├── .helmignore │ │ │ │ │ │ ├── Chart.yaml │ │ │ │ │ │ ├── templates │ │ │ │ │ │ └── deployment.yaml │ │ │ │ │ │ └── values.yaml │ │ │ │ │ ├── cloud │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── main.tf │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── certificate_manager │ │ │ │ │ │ │ ├── main.tf │ │ │ │ │ │ │ ├── outputs.tf │ │ │ │ │ │ │ └── variables.tf │ │ │ │ │ │ ├── container_repository │ │ │ │ │ │ │ ├── main.tf │ │ │ │ │ │ │ ├── outputs.tf │ │ │ │ │ │ │ └── variables.tf │ │ │ │ │ │ ├── eks │ │ │ │ │ │ │ ├── main.tf │ │ │ │ │ │ │ ├── outputs.tf │ │ │ │ │ │ │ └── variables.tf │ │ │ │ │ │ ├── helm │ │ │ │ │ │ │ ├── main.tf │ │ │ │ │ │ │ └── variables.tf │ │ │ │ │ │ ├── iam │ │ │ │ │ │ │ ├── main.tf │ │ │ │ │ │ │ ├── outputs.tf │ │ │ │ │ │ │ └── variables.tf │ │ │ │ │ │ ├── rds │ │ │ │ │ │ │ ├── main.tf │ │ │ │ │ │ │ ├── outputs.tf │ │ │ │ │ │ │ └── variables.tf │ │ │ │ │ │ └── vpc │ │ │ │ │ │ │ ├── main.tf │ │ │ │ │ │ │ ├── outputs.tf │ │ │ │ │ │ │ └── variables.tf │ │ │ │ │ └── variables.tf │ │ │ │ │ ├── ingress-values.yaml │ │ │ │ │ └── local │ │ │ │ │ ├── Dockerfile.prebuild │ │ │ │ │ ├── postgresql-values.yml │ │ │ │ │ ├── rabbitmq-values.yml │ │ │ │ │ └── redis-values.yml │ │ │ ├── generator.spec.ts │ │ │ ├── generator.ts │ │ │ ├── lib │ │ │ │ └── create-deployment-files.ts │ │ │ └── schema.json │ │ ├── library-generator │ │ │ ├── files │ │ │ │ └── index.ts__tmpl__ │ │ │ ├── generator.spec.ts │ │ │ ├── generator.ts │ │ │ ├── lib │ │ │ │ └── create-files.ts │ │ │ └── schema.d.ts │ │ ├── migration-generator │ │ │ ├── files │ │ │ │ └── src │ │ │ │ │ └── migrations.ts.template │ │ │ ├── generator.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ │ └── util-library-generator │ │ │ ├── generator.spec.ts │ │ │ ├── generator.ts │ │ │ ├── schema.d.ts │ │ │ └── schema.json │ ├── index.ts │ └── utils │ │ ├── delete-files.ts │ │ └── package-versions.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── migrations.json ├── nx.json ├── package.json ├── tools ├── scripts │ └── publish.mjs └── tsconfig.tools.json └── tsconfig.base.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/actions/affected-projects/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/action.yml -------------------------------------------------------------------------------- /.github/actions/affected-projects/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/index.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/dist/bin/uuid -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/.package-lock.json -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/LICENSE.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/README.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/command.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/command.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/command.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/command.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/command.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/core.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/core.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/core.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/core.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/file-command.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/file-command.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/file-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/file-command.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/file-command.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/file-command.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/oidc-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/oidc-utils.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/oidc-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/oidc-utils.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/oidc-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/oidc-utils.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/path-utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/path-utils.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/path-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/path-utils.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/path-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/path-utils.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/summary.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/summary.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/summary.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/summary.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/summary.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/utils.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/utils.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/lib/utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/lib/utils.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/core/package.json -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/LICENSE -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/README.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/auth.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/auth.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/auth.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/auth.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/index.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/index.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/index.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/interfaces.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/interfaces.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/interfaces.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/interfaces.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/interfaces.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/proxy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/proxy.d.ts -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/proxy.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/lib/proxy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/lib/proxy.js.map -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/@actions/http-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/@actions/http-client/package.json -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/.idea/encodings.xml -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/.idea/modules.xml -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/.idea/node-tunnel.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/.idea/node-tunnel.iml -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/.idea/vcs.xml -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/.idea/workspace.xml -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/.travis.yml -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/CHANGELOG.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/LICENSE -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/README.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tunnel'); 2 | -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/lib/tunnel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/lib/tunnel.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/tunnel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/tunnel/package.json -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/CHANGELOG.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/LICENSE.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/README.md -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/bin/uuid: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../uuid-bin'); 3 | -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/index.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/md5.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/nil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/nil.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/parse.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/regex.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/rng.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/sha1.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/stringify.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v1.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v3.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v35.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v35.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v4.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/v5.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/validate.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-browser/version.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/index.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/md5.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/nil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/nil.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/parse.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/regex.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/rng.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/sha1.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/stringify.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v1.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v3.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v35.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v35.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v4.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/v5.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/validate.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/esm-node/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/esm-node/version.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/index.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/md5-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/md5-browser.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/md5.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/nil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/nil.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/parse.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/regex.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/rng-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/rng-browser.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/rng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/rng.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/sha1-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/sha1-browser.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/sha1.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/stringify.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuid.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidNIL.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidNIL.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidParse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidParse.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidStringify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidStringify.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidValidate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidValidate.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidVersion.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidVersion.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidv1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidv1.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidv3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidv3.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidv4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidv4.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidv5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/umd/uuidv5.min.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/uuid-bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/uuid-bin.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/v1.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/v3.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/v35.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/v35.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/v4.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/v5.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/validate.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/dist/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/dist/version.js -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/package.json -------------------------------------------------------------------------------- /.github/actions/affected-projects/node_modules/uuid/wrapper.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/node_modules/uuid/wrapper.mjs -------------------------------------------------------------------------------- /.github/actions/affected-projects/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/package-lock.json -------------------------------------------------------------------------------- /.github/actions/affected-projects/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/affected-projects/package.json -------------------------------------------------------------------------------- /.github/actions/deploy-api/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/deploy-api/action.yml -------------------------------------------------------------------------------- /.github/actions/docker-build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/docker-build/action.yml -------------------------------------------------------------------------------- /.github/actions/docker-prebuild/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/docker-prebuild/action.yml -------------------------------------------------------------------------------- /.github/actions/install-dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/actions/install-dependencies/action.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.validate": ["json"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/local-deployment/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/.eslintrc.json -------------------------------------------------------------------------------- /libs/local-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/README.md -------------------------------------------------------------------------------- /libs/local-deployment/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/jest.config.ts -------------------------------------------------------------------------------- /libs/local-deployment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/package.json -------------------------------------------------------------------------------- /libs/local-deployment/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/project.json -------------------------------------------------------------------------------- /libs/local-deployment/src/check-deployment-requirements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/src/check-deployment-requirements.ts -------------------------------------------------------------------------------- /libs/local-deployment/src/deploy-ingress-controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/src/deploy-ingress-controller.ts -------------------------------------------------------------------------------- /libs/local-deployment/src/deploy-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/src/deploy-services.ts -------------------------------------------------------------------------------- /libs/local-deployment/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/src/index.ts -------------------------------------------------------------------------------- /libs/local-deployment/src/setup-cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/src/setup-cluster.ts -------------------------------------------------------------------------------- /libs/local-deployment/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/tsconfig.json -------------------------------------------------------------------------------- /libs/local-deployment/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/local-deployment/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/local-deployment/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nest-application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/.eslintrc.json -------------------------------------------------------------------------------- /libs/nest-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/README.md -------------------------------------------------------------------------------- /libs/nest-application/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/jest.config.ts -------------------------------------------------------------------------------- /libs/nest-application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/package.json -------------------------------------------------------------------------------- /libs/nest-application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/project.json -------------------------------------------------------------------------------- /libs/nest-application/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/service'; 2 | -------------------------------------------------------------------------------- /libs/nest-application/src/lib/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/src/lib/service.ts -------------------------------------------------------------------------------- /libs/nest-application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/tsconfig.json -------------------------------------------------------------------------------- /libs/nest-application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nest-application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nest-config/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/.eslintrc.json -------------------------------------------------------------------------------- /libs/nest-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/README.md -------------------------------------------------------------------------------- /libs/nest-config/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/jest.config.ts -------------------------------------------------------------------------------- /libs/nest-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/package.json -------------------------------------------------------------------------------- /libs/nest-config/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/project.json -------------------------------------------------------------------------------- /libs/nest-config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/src/index.ts -------------------------------------------------------------------------------- /libs/nest-config/src/lib/config.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/src/lib/config.interfaces.ts -------------------------------------------------------------------------------- /libs/nest-config/src/lib/config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/src/lib/config.module.ts -------------------------------------------------------------------------------- /libs/nest-config/src/lib/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/src/lib/config.service.ts -------------------------------------------------------------------------------- /libs/nest-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/tsconfig.json -------------------------------------------------------------------------------- /libs/nest-config/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nest-config/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-config/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nest-health/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/.eslintrc.json -------------------------------------------------------------------------------- /libs/nest-health/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/README.md -------------------------------------------------------------------------------- /libs/nest-health/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/jest.config.ts -------------------------------------------------------------------------------- /libs/nest-health/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/package.json -------------------------------------------------------------------------------- /libs/nest-health/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/project.json -------------------------------------------------------------------------------- /libs/nest-health/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/health.module'; 2 | -------------------------------------------------------------------------------- /libs/nest-health/src/lib/health.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/src/lib/health.controller.ts -------------------------------------------------------------------------------- /libs/nest-health/src/lib/health.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/src/lib/health.module.ts -------------------------------------------------------------------------------- /libs/nest-health/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/tsconfig.json -------------------------------------------------------------------------------- /libs/nest-health/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nest-health/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-health/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nest-rabbitmq/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/.eslintrc.json -------------------------------------------------------------------------------- /libs/nest-rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/README.md -------------------------------------------------------------------------------- /libs/nest-rabbitmq/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/jest.config.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/package.json -------------------------------------------------------------------------------- /libs/nest-rabbitmq/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/project.json -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/index.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/decorators/index.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/decorators/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/decorators/interfaces.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/decorators/rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/decorators/rpc.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/decorators/subscribe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/decorators/subscribe.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/event/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/event/event.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/rabbitmq-exchange.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/rabbitmq-exchange.util.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/rabbitmq.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/rabbitmq.interfaces.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/rabbitmq.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/rabbitmq.module.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/src/lib/rabbitmq.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/src/lib/rabbitmq.service.ts -------------------------------------------------------------------------------- /libs/nest-rabbitmq/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/tsconfig.json -------------------------------------------------------------------------------- /libs/nest-rabbitmq/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nest-rabbitmq/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-rabbitmq/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nest-redis/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/.eslintrc.json -------------------------------------------------------------------------------- /libs/nest-redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/README.md -------------------------------------------------------------------------------- /libs/nest-redis/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/jest.config.ts -------------------------------------------------------------------------------- /libs/nest-redis/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/package.json -------------------------------------------------------------------------------- /libs/nest-redis/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/project.json -------------------------------------------------------------------------------- /libs/nest-redis/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/src/index.ts -------------------------------------------------------------------------------- /libs/nest-redis/src/lib/connection/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/src/lib/connection/connection.ts -------------------------------------------------------------------------------- /libs/nest-redis/src/lib/redis.interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/src/lib/redis.interfaces.ts -------------------------------------------------------------------------------- /libs/nest-redis/src/lib/redis.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/src/lib/redis.module.ts -------------------------------------------------------------------------------- /libs/nest-redis/src/lib/redis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/src/lib/redis.service.ts -------------------------------------------------------------------------------- /libs/nest-redis/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/tsconfig.json -------------------------------------------------------------------------------- /libs/nest-redis/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nest-redis/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-redis/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/.eslintrc.json -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/README.md -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/jest.config.ts -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/package.json -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/project.json -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/src/index.ts -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/src/lib/migration-generator.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/src/lib/migration-generator.module.ts -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/src/lib/migration-generator.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/src/lib/migration-generator.service.ts -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/tsconfig.json -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/nest-typeorm-migrations/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/nest-typeorm-migrations/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/npx-build/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/.eslintrc.json -------------------------------------------------------------------------------- /libs/npx-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/README.md -------------------------------------------------------------------------------- /libs/npx-build/executors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/executors.json -------------------------------------------------------------------------------- /libs/npx-build/generators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/generators.json -------------------------------------------------------------------------------- /libs/npx-build/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/jest.config.ts -------------------------------------------------------------------------------- /libs/npx-build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/package.json -------------------------------------------------------------------------------- /libs/npx-build/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/project.json -------------------------------------------------------------------------------- /libs/npx-build/src/executors/build/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/src/executors/build/executor.ts -------------------------------------------------------------------------------- /libs/npx-build/src/executors/build/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/src/executors/build/schema.d.ts -------------------------------------------------------------------------------- /libs/npx-build/src/executors/build/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/src/executors/build/schema.json -------------------------------------------------------------------------------- /libs/npx-build/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/npx-build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/tsconfig.json -------------------------------------------------------------------------------- /libs/npx-build/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/npx-build/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/npx-build/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/workspace/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/.eslintrc.json -------------------------------------------------------------------------------- /libs/workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/README.md -------------------------------------------------------------------------------- /libs/workspace/executors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/executors.json -------------------------------------------------------------------------------- /libs/workspace/generators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/generators.json -------------------------------------------------------------------------------- /libs/workspace/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/jest.config.ts -------------------------------------------------------------------------------- /libs/workspace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/package.json -------------------------------------------------------------------------------- /libs/workspace/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/project.json -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/application/deployment/Dockerfile.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/application/deployment/Dockerfile.ci -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/application/deployment/Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/application/deployment/Dockerfile.local -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/application/deployment/deployment-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/application/deployment/deployment-values.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/application/env/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/application/env/.env -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/application/src/app.module.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/application/src/app.module.ts__tmpl__ -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/application/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/application/src/main.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/application/src/main.ts__tmpl__ -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/application/src/migrations.ts__tmpl__: -------------------------------------------------------------------------------- 1 | export const migrations = []; 2 | -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-constants/index.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/library-constants/index.ts__tmpl__ -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-data-transfer-objects/index.ts__tmpl__: -------------------------------------------------------------------------------- 1 | export * from './lib/example.dto'; 2 | -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-data-transfer-objects/lib/example.dto.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/library-data-transfer-objects/lib/example.dto.ts__tmpl__ -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-data-transfer-objects/lib/example.interfaces.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/library-data-transfer-objects/lib/example.interfaces.ts__tmpl__ -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-data-transfer-objects/types.ts__tmpl__: -------------------------------------------------------------------------------- 1 | export * from './lib/example.interfaces'; 2 | -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-service/index.ts__tmpl__: -------------------------------------------------------------------------------- 1 | export * from './lib/<%= name %>.module'; -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-service/lib/__name__.controller.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/library-service/lib/__name__.controller.ts__tmpl__ -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-service/lib/__name__.module.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/library-service/lib/__name__.module.ts__tmpl__ -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/files/library-service/lib/__name__.service.ts__tmpl__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/files/library-service/lib/__name__.service.ts__tmpl__ -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/generator.spec.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/generator.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/lib/add-migration-generation-target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/lib/add-migration-generation-target.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/lib/create-application-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/lib/create-application-files.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/lib/create-constants-library-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/lib/create-constants-library-files.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/lib/create-dto-library-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/lib/create-dto-library-files.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/lib/create-service-library-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/lib/create-service-library-files.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/schema.d.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-generator/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-generator/schema.json -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-library-generator/generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-library-generator/generator.spec.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-library-generator/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-library-generator/generator.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-library-generator/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-library-generator/schema.d.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/app-library-generator/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/app-library-generator/schema.json -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/.github/workflows/check.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/Dockerfile.prebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/Dockerfile.prebuild -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/ingress-controller/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/ingress-controller/.helmignore -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/ingress-controller/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/ingress-controller/Chart.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/ingress-controller/templates/ingress-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/ingress-controller/templates/ingress-controller.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/ingress-controller/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/ingress-controller/values.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/node-service/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/node-service/.helmignore -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/node-service/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/node-service/Chart.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/node-service/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/node-service/templates/deployment.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/node-service/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/charts/node-service/values.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/.gitignore -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/main.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/certificate_manager/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/certificate_manager/main.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/certificate_manager/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/certificate_manager/outputs.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/certificate_manager/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/certificate_manager/variables.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/container_repository/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/container_repository/main.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/container_repository/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/container_repository/outputs.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/container_repository/variables.tf: -------------------------------------------------------------------------------- 1 | variable "environment_name" { 2 | type = string 3 | } 4 | -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/eks/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/eks/main.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/eks/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/eks/outputs.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/eks/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/eks/variables.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/helm/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/helm/main.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/helm/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/helm/variables.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/iam/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/iam/main.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/iam/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/iam/outputs.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/iam/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/iam/variables.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/rds/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/rds/main.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/rds/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/rds/outputs.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/rds/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/rds/variables.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/vpc/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/vpc/main.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/vpc/outputs.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/modules/vpc/variables.tf: -------------------------------------------------------------------------------- 1 | variable "environment_name" { 2 | type = string 3 | } -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/cloud/variables.tf -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/ingress-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/ingress-values.yaml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/local/Dockerfile.prebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/local/Dockerfile.prebuild -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/local/postgresql-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/local/postgresql-values.yml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/local/rabbitmq-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/local/rabbitmq-values.yml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/files/infrastructure/local/redis-values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/files/infrastructure/local/redis-values.yml -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/generator.spec.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/generator.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/lib/create-deployment-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/lib/create-deployment-files.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/configuration-generator/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/configuration-generator/schema.json -------------------------------------------------------------------------------- /libs/workspace/src/generators/library-generator/files/index.ts__tmpl__: -------------------------------------------------------------------------------- 1 | export const LIBRARY_NAME = '<%= libraryName %>'; 2 | -------------------------------------------------------------------------------- /libs/workspace/src/generators/library-generator/generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/library-generator/generator.spec.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/library-generator/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/library-generator/generator.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/library-generator/lib/create-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/library-generator/lib/create-files.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/library-generator/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/library-generator/schema.d.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/migration-generator/files/src/migrations.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/migration-generator/files/src/migrations.ts.template -------------------------------------------------------------------------------- /libs/workspace/src/generators/migration-generator/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/migration-generator/generator.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/migration-generator/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/migration-generator/schema.d.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/migration-generator/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/migration-generator/schema.json -------------------------------------------------------------------------------- /libs/workspace/src/generators/util-library-generator/generator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/util-library-generator/generator.spec.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/util-library-generator/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/util-library-generator/generator.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/util-library-generator/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/util-library-generator/schema.d.ts -------------------------------------------------------------------------------- /libs/workspace/src/generators/util-library-generator/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/generators/util-library-generator/schema.json -------------------------------------------------------------------------------- /libs/workspace/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/workspace/src/utils/delete-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/utils/delete-files.ts -------------------------------------------------------------------------------- /libs/workspace/src/utils/package-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/src/utils/package-versions.ts -------------------------------------------------------------------------------- /libs/workspace/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/tsconfig.json -------------------------------------------------------------------------------- /libs/workspace/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/workspace/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/libs/workspace/tsconfig.spec.json -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/migrations.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/package.json -------------------------------------------------------------------------------- /tools/scripts/publish.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/tools/scripts/publish.mjs -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FurlanLuka/microservice-stack/HEAD/tsconfig.base.json --------------------------------------------------------------------------------