├── .codecov.yml ├── .cursor └── rules │ ├── development-commands.mdc │ ├── naming-conventions.mdc │ ├── pre-commit-workflow.mdc │ ├── project-architecture.mdc │ ├── react-typescript-standards.mdc │ ├── styling-standards.mdc │ └── testing-standards.mdc ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── deploy-production.yml │ ├── deploy-staging.yml │ ├── pull-request.yml │ ├── semantic-release.yml │ └── test-build-and-deploy.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .test.env ├── .vscode ├── extensions.json └── settings.json ├── .yarn ├── patches │ └── posthog-js-npm-1.260.1-ec574bf323.patch └── releases │ └── yarn-berry.cjs ├── .yarnrc.yml ├── AGENT.md ├── Dockerfile ├── LICENSE ├── README.md ├── Storybook ├── __tests__ ├── mocks.ts ├── server.ts └── utils │ ├── mock-use-query-result.tsx │ ├── providers.tsx │ ├── resize-observer.tsx │ ├── setup-jest.tsx │ └── wrap-with-react-hook-form.tsx ├── adr └── fontawesome-icons.md ├── apps ├── .gitkeep ├── console-e2e │ ├── .eslintrc.json │ ├── cypress.json │ ├── project.json │ ├── src │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── app.spec.ts │ │ └── support │ │ │ ├── app.po.ts │ │ │ ├── commands.ts │ │ │ └── index.ts │ └── tsconfig.json ├── console │ ├── .babelrc │ ├── .browserslistrc │ ├── .eslintrc.json │ ├── jest.config.ts │ ├── postcss.config.js │ ├── project.json │ ├── src │ │ ├── app │ │ │ ├── app.spec.tsx │ │ │ ├── app.tsx │ │ │ ├── components │ │ │ │ ├── preview-code.tsx │ │ │ │ ├── redirect-overview.tsx │ │ │ │ └── scroll-to-top.tsx │ │ │ └── router │ │ │ │ └── main.router.tsx │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── favicon.ico │ │ ├── index.html │ │ └── main.tsx │ ├── tailwind.config.js │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ ├── webpack.config.js │ └── webpack.config.old.js └── design-system-e2e │ ├── .eslintrc.json │ ├── cypress.json │ ├── project.json │ ├── src │ ├── fixtures │ │ └── example.json │ ├── integration │ │ └── design-system │ │ │ └── design-system.spec.ts │ └── support │ │ ├── commands.ts │ │ └── index.ts │ └── tsconfig.json ├── babel.config.json ├── jest.config.ts ├── jest.preset.js ├── libs ├── .gitkeep ├── domains │ ├── cloud-providers │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-cloud-providers-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── cluster-scw-control-plane-feature │ │ │ │ ├── cluster-scw-control-plane-feature.spec.tsx │ │ │ │ └── cluster-scw-control-plane-feature.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-cloud-provider-credentials │ │ │ │ │ └── use-cloud-provider-credentials.ts │ │ │ │ ├── use-cloud-provider-database-instance-types │ │ │ │ │ └── use-cloud-provider-database-instance-types.ts │ │ │ │ ├── use-cloud-provider-features │ │ │ │ │ └── use-cloud-provider-features.ts │ │ │ │ ├── use-cloud-provider-instance-types-karpenter │ │ │ │ │ └── use-cloud-provider-instance-types-karpenter.ts │ │ │ │ ├── use-cloud-provider-instance-types │ │ │ │ │ └── use-cloud-provider-instance-types.ts │ │ │ │ ├── use-cloud-providers │ │ │ │ │ └── use-cloud-providers.ts │ │ │ │ ├── use-create-cloud-provider-credential │ │ │ │ │ └── use-create-cloud-provider-credential.ts │ │ │ │ ├── use-delete-cloud-provider-credential │ │ │ │ │ └── use-delete-cloud-provider-credential.ts │ │ │ │ └── use-edit-cloud-provider-credential │ │ │ │ │ └── use-edit-cloud-provider-credential.ts │ │ │ │ ├── karpenter-instance-filter-modal │ │ │ │ ├── instance-category │ │ │ │ │ ├── instance-category.spec.tsx │ │ │ │ │ └── instance-category.tsx │ │ │ │ ├── karpenter-instance-filter-modal.spec.tsx │ │ │ │ ├── karpenter-instance-filter-modal.tsx │ │ │ │ └── utils │ │ │ │ │ ├── convert-instance-to-karpenter-requirements.spec.ts │ │ │ │ │ ├── convert-instance-to-karpenter-requirements.ts │ │ │ │ │ ├── filter-instances-by-karpenter-requirements.spec.ts │ │ │ │ │ ├── filter-instances-by-karpenter-requirements.ts │ │ │ │ │ ├── generate-default-values.spec.ts │ │ │ │ │ ├── generate-default-values.ts │ │ │ │ │ ├── sort-instance-sizes.spec.ts │ │ │ │ │ └── sort-instance-sizes.ts │ │ │ │ └── karpenter-instance-type-preview │ │ │ │ ├── karpenter-instance-type-preview.spec.tsx │ │ │ │ └── karpenter-instance-type-preview.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── cluster-metrics │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── cluster-card-node-usage │ │ │ │ ├── cluster-card-node-usage.spec.tsx │ │ │ │ └── cluster-card-node-usage.tsx │ │ │ │ ├── cluster-card-resources │ │ │ │ ├── calculate-cluster-resources.spec.ts │ │ │ │ ├── calculate-cluster-resources.ts │ │ │ │ ├── cluster-card-resources.spec.tsx │ │ │ │ └── cluster-card-resources.tsx │ │ │ │ ├── cluster-card-setup │ │ │ │ ├── cluster-card-setup.spec.tsx │ │ │ │ └── cluster-card-setup.tsx │ │ │ │ ├── cluster-table-node │ │ │ │ ├── cluster-table-node.spec.tsx │ │ │ │ └── cluster-table-node.tsx │ │ │ │ ├── cluster-table-nodepool │ │ │ │ ├── calculate-nodepool-metrics.spec.ts │ │ │ │ ├── calculate-nodepool-metrics.ts │ │ │ │ ├── cluster-table-nodepool.spec.tsx │ │ │ │ └── cluster-table-nodepool.tsx │ │ │ │ ├── data.ts │ │ │ │ └── hooks │ │ │ │ ├── use-cluster-metrics-socket │ │ │ │ └── use-cluster-metrics-socket.ts │ │ │ │ └── use-cluster-metrics │ │ │ │ └── use-cluster-metrics.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── clusters │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-clusters-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── cluster-access-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── cluster-access-modal.spec.tsx.snap │ │ │ │ ├── cluster-access-modal.spec.tsx │ │ │ │ └── cluster-access-modal.tsx │ │ │ │ ├── cluster-action-toolbar │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── cluster-action-toolbar.spec.tsx.snap │ │ │ │ ├── cluster-action-toolbar.spec.tsx │ │ │ │ └── cluster-action-toolbar.tsx │ │ │ │ ├── cluster-avatar │ │ │ │ └── cluster-avatar.tsx │ │ │ │ ├── cluster-card │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── cluster-card.spec.tsx.snap │ │ │ │ ├── cluster-card.spec.tsx │ │ │ │ └── cluster-card.tsx │ │ │ │ ├── cluster-credentials-modal │ │ │ │ ├── cluster-credentials-modal.spec.tsx │ │ │ │ └── cluster-credentials-modal.tsx │ │ │ │ ├── cluster-delete-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── cluster-delete-modal.spec.tsx.snap │ │ │ │ ├── cluster-delete-modal.spec.tsx │ │ │ │ └── cluster-delete-modal.tsx │ │ │ │ ├── cluster-eks-settings │ │ │ │ ├── cluser-eks-settings.spec.tsx │ │ │ │ └── cluser-eks-settings.tsx │ │ │ │ ├── cluster-installation-guide-modal │ │ │ │ └── cluster-installation-guide-modal.tsx │ │ │ │ ├── cluster-migration-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── cluster-migration-modal.spec.tsx.snap │ │ │ │ ├── cluster-migration-modal.spec.tsx │ │ │ │ └── cluster-migration-modal.tsx │ │ │ │ ├── cluster-running-status-badge │ │ │ │ ├── cluster-running-status-badge.spec.tsx │ │ │ │ └── cluster-running-status-badge.tsx │ │ │ │ ├── cluster-setup │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── cluster-setup.spec.tsx.snap │ │ │ │ ├── cluster-setup.spec.tsx │ │ │ │ └── cluster-setup.tsx │ │ │ │ ├── cluster-terminal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── cluster-terminal.spec.tsx.snap │ │ │ │ ├── cluster-terminal-provider.tsx │ │ │ │ ├── cluster-terminal.spec.tsx │ │ │ │ └── cluster-terminal.tsx │ │ │ │ ├── cluster-type │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── cluster-type.spec.tsx.snap │ │ │ │ ├── cluster-type.spec.tsx │ │ │ │ └── cluster-type.tsx │ │ │ │ ├── cluster-update-modal │ │ │ │ ├── cluster-update-modal.spec.tsx │ │ │ │ └── cluster-update-modal.tsx │ │ │ │ ├── credentials-list-clusters-modal │ │ │ │ ├── credentials-list-clusters-modal.spec.tsx │ │ │ │ └── credentials-list-clusters-modal.tsx │ │ │ │ ├── gpu-resources-settings │ │ │ │ └── gpu-resources-settings.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-cluster-advanced-settings │ │ │ │ │ └── use-cluster-advanced-settings.ts │ │ │ │ ├── use-cluster-cloud-provider-info │ │ │ │ │ └── use-cluster-cloud-provider-info.ts │ │ │ │ ├── use-cluster-kubeconfig │ │ │ │ │ └── use-cluster-kubeconfig.ts │ │ │ │ ├── use-cluster-logs │ │ │ │ │ └── use-cluster-logs.ts │ │ │ │ ├── use-cluster-routing-table │ │ │ │ │ └── use-cluster-routing-table.ts │ │ │ │ ├── use-cluster-running-status-socket │ │ │ │ │ └── use-cluster-running-status-socket.ts │ │ │ │ ├── use-cluster-running-status │ │ │ │ │ └── use-cluster-running-status.ts │ │ │ │ ├── use-cluster-status │ │ │ │ │ └── use-cluster-status.ts │ │ │ │ ├── use-cluster-statuses │ │ │ │ │ └── use-cluster-statuses.ts │ │ │ │ ├── use-cluster │ │ │ │ │ └── use-cluster.ts │ │ │ │ ├── use-clusters │ │ │ │ │ └── use-clusters.ts │ │ │ │ ├── use-create-cluster │ │ │ │ │ └── use-create-cluster.ts │ │ │ │ ├── use-default-advanced-settings │ │ │ │ │ └── use-default-advanced-settings.ts │ │ │ │ ├── use-delete-cluster │ │ │ │ │ └── use-delete-cluster.ts │ │ │ │ ├── use-deploy-cluster │ │ │ │ │ └── use-deploy-cluster.ts │ │ │ │ ├── use-download-kubeconfig │ │ │ │ │ └── use-download-kubeconfig.ts │ │ │ │ ├── use-edit-cloud-provider-info │ │ │ │ │ └── use-edit-cloud-provider-info.ts │ │ │ │ ├── use-edit-cluster-advanced-settings │ │ │ │ │ └── use-edit-cluster-advanced-settings.ts │ │ │ │ ├── use-edit-cluster-kubeconfig │ │ │ │ │ └── use-edit-cluster-kubeconfig.ts │ │ │ │ ├── use-edit-cluster │ │ │ │ │ └── use-edit-cluster.ts │ │ │ │ ├── use-edit-routing-table │ │ │ │ │ └── use-edit-routing-table.ts │ │ │ │ ├── use-installation-helm-values │ │ │ │ │ └── use-installation-helm-values.ts │ │ │ │ ├── use-stop-cluster │ │ │ │ │ └── use-stop-cluster.ts │ │ │ │ ├── use-update-karpenter-private-fargate │ │ │ │ │ └── use-update-karpenter-private-fargate.ts │ │ │ │ └── use-upgrade-cluster │ │ │ │ │ └── use-upgrade-cluster.ts │ │ │ │ ├── kubeconfig-preview │ │ │ │ └── kubeconfig-preview.tsx │ │ │ │ ├── nodepools-resources-settings │ │ │ │ ├── nodepool-modal │ │ │ │ │ ├── nodepool-modal.spec.tsx │ │ │ │ │ └── nodepool-modal.tsx │ │ │ │ ├── nodepools-resources-settings.spec.tsx │ │ │ │ └── nodepools-resources-settings.tsx │ │ │ │ ├── scaleway-static-ip │ │ │ │ ├── scaleway-static-ip.spec.tsx │ │ │ │ └── scaleway-static-ip.tsx │ │ │ │ └── utils │ │ │ │ └── has-gpu-instance.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── custom-domains │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-custom-domains-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── hooks │ │ │ │ ├── use-create-custom-domain │ │ │ │ └── use-create-custom-domain.ts │ │ │ │ ├── use-custom-domains │ │ │ │ └── use-custom-domains.ts │ │ │ │ ├── use-delete-custom-domain │ │ │ │ └── use-delete-custom-domain.ts │ │ │ │ └── use-edit-custom-domain │ │ │ │ └── use-edit-custom-domain.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── environment-logs │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── environment-stages │ │ │ │ ├── environment-stages.spec.tsx │ │ │ │ └── environment-stages.tsx │ │ │ │ ├── header-environment-stages │ │ │ │ ├── header-environment-stages.spec.tsx │ │ │ │ └── header-environment-stages.tsx │ │ │ │ ├── header-pre-check-logs │ │ │ │ ├── header-pre-check-logs.spec.tsx │ │ │ │ └── header-pre-check-logs.tsx │ │ │ │ ├── hooks │ │ │ │ └── use-pre-check-logs │ │ │ │ │ └── use-pre-check-logs.ts │ │ │ │ └── list-pre-check-logs │ │ │ │ ├── list-pre-check-logs.spec.tsx │ │ │ │ ├── list-pre-check-logs.tsx │ │ │ │ └── row-pre-check-logs │ │ │ │ ├── row-pre-check-logs.spec.tsx │ │ │ │ └── row-pre-check-logs.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── environments │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-environments-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── create-clone-environment-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── create-clone-environment-modal.spec.tsx.snap │ │ │ │ ├── create-clone-environment-modal.spec.tsx │ │ │ │ └── create-clone-environment-modal.tsx │ │ │ │ ├── environment-action-toolbar │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── environment-action-toolbar.spec.tsx.snap │ │ │ │ ├── environment-action-toolbar.spec.tsx │ │ │ │ └── environment-action-toolbar.tsx │ │ │ │ ├── environment-avatar │ │ │ │ └── environment-avatar.tsx │ │ │ │ ├── environment-deployment-list │ │ │ │ ├── dropdown-services │ │ │ │ │ ├── dropdown-services.spec.tsx │ │ │ │ │ └── dropdown-services.tsx │ │ │ │ ├── environment-deployment-list-skeleton.tsx │ │ │ │ ├── environment-deployment-list.spec.tsx │ │ │ │ ├── environment-deployment-list.tsx │ │ │ │ └── table-filter-trigger-by │ │ │ │ │ ├── table-filter-trigger-by.spec.tsx │ │ │ │ │ └── table-filter-trigger-by.tsx │ │ │ │ ├── environment-deployment-status-label │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── environment-deployment-status-label.spec.tsx.snap │ │ │ │ ├── environment-deployment-status-label.spec.tsx │ │ │ │ └── environment-deployment-status-label.tsx │ │ │ │ ├── environment-list │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── environment-list.spec.tsx.snap │ │ │ │ ├── environment-list-skeleton.tsx │ │ │ │ ├── environment-list.spec.tsx │ │ │ │ └── environment-list.tsx │ │ │ │ ├── environment-mode │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── environment-mode.spec.tsx.snap │ │ │ │ ├── environment-mode.spec.tsx │ │ │ │ └── environment-mode.tsx │ │ │ │ ├── environment-state-chip │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── environment-state-chip.spec.tsx.snap │ │ │ │ ├── environment-state-chip.spec.tsx │ │ │ │ └── environment-state-chip.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-attach-service-to-deployment-stage │ │ │ │ │ └── use-attach-service-to-deployment-stage.ts │ │ │ │ ├── use-cancel-deployment-environment │ │ │ │ │ └── use-cancel-deployment-environment.ts │ │ │ │ ├── use-cancel-deployment-queue-environment │ │ │ │ │ └── use-cancel-deployment-queue-environment.ts │ │ │ │ ├── use-check-dockerfile │ │ │ │ │ └── use-check-dockerfile.ts │ │ │ │ ├── use-check-running-status-closed │ │ │ │ │ └── use-check-running-status-closed.ts │ │ │ │ ├── use-clone-environment │ │ │ │ │ └── use-clone-environment.ts │ │ │ │ ├── use-create-deployment-stage │ │ │ │ │ └── use-create-deployment-stage.ts │ │ │ │ ├── use-create-environment │ │ │ │ │ └── use-create-environment.ts │ │ │ │ ├── use-delete-deployment-stage │ │ │ │ │ └── use-delete-deployment-stage.ts │ │ │ │ ├── use-delete-environment │ │ │ │ │ └── use-delete-environment.ts │ │ │ │ ├── use-deploy-all-services │ │ │ │ │ └── use-deploy-all-services.ts │ │ │ │ ├── use-deploy-environment │ │ │ │ │ └── use-deploy-environment.ts │ │ │ │ ├── use-deployment-history-execution-id │ │ │ │ │ └── use-deployment-history-execution-id.ts │ │ │ │ ├── use-deployment-history │ │ │ │ │ └── use-deployment-history.ts │ │ │ │ ├── use-deployment-queue │ │ │ │ │ └── use-deployment-queue.ts │ │ │ │ ├── use-deployment-rule │ │ │ │ │ └── use-deployment-rule.ts │ │ │ │ ├── use-deployment-stages │ │ │ │ │ └── use-deployment-stages.ts │ │ │ │ ├── use-deployment-status │ │ │ │ │ └── use-deployment-status.ts │ │ │ │ ├── use-edit-deployment-rule │ │ │ │ │ └── use-edit-deployment-rule.ts │ │ │ │ ├── use-edit-deployment-stage │ │ │ │ │ └── use-edit-deployment-stage.ts │ │ │ │ ├── use-edit-environment │ │ │ │ │ └── use-edit-environment.ts │ │ │ │ ├── use-environment │ │ │ │ │ └── use-environment.ts │ │ │ │ ├── use-environments │ │ │ │ │ └── use-environments.ts │ │ │ │ ├── use-export-terraform │ │ │ │ │ └── use-export-terraform.ts │ │ │ │ ├── use-lifecycle-template │ │ │ │ │ └── use-lifecycle-template.ts │ │ │ │ ├── use-lifecycle-templates │ │ │ │ │ └── use-lifecycle-templates.ts │ │ │ │ ├── use-list-database-configurations │ │ │ │ │ └── use-list-database-configurations.ts │ │ │ │ ├── use-list-deployment-stages │ │ │ │ │ └── use-list-deployment-stages.ts │ │ │ │ ├── use-list-statuses │ │ │ │ │ └── use-list-statuses.ts │ │ │ │ ├── use-move-deployment-stage │ │ │ │ │ └── use-move-deployment-stage.ts │ │ │ │ ├── use-outdated-services │ │ │ │ │ └── use-outdated-services.ts │ │ │ │ ├── use-running-status │ │ │ │ │ └── use-running-status.ts │ │ │ │ ├── use-service-count │ │ │ │ │ └── use-service-count.ts │ │ │ │ ├── use-stop-environment │ │ │ │ │ └── use-stop-environment.ts │ │ │ │ └── use-uninstall-environment │ │ │ │ │ └── use-uninstall-environment.ts │ │ │ │ ├── need-redeploy-flag │ │ │ │ ├── need-redeploy-flag.spec.tsx │ │ │ │ └── need-redeploy-flag.tsx │ │ │ │ ├── terraform-export-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── terraform-export-modal.spec.tsx.snap │ │ │ │ ├── terraform-export-modal.spec.tsx │ │ │ │ └── terraform-export-modal.tsx │ │ │ │ └── update-all-modal │ │ │ │ ├── __snapshots__ │ │ │ │ └── update-all-modal.spec.tsx.snap │ │ │ │ ├── update-all-modal.spec.tsx │ │ │ │ └── update-all-modal.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── event │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── event.queries.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── observability │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-observability-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── activation-toast │ │ │ │ └── activation-toast.tsx │ │ │ │ ├── alerting │ │ │ │ ├── alert-rules-overview │ │ │ │ │ ├── alert-rules-overview.spec.tsx │ │ │ │ │ └── alert-rules-overview.tsx │ │ │ │ ├── alerting-creation-flow │ │ │ │ │ ├── alerting-creation-flow.tsx │ │ │ │ │ ├── alerting-creation-flow.types.ts │ │ │ │ │ ├── metric-configuration-step │ │ │ │ │ │ ├── metric-configuration-step.spec.tsx │ │ │ │ │ │ └── metric-configuration-step.tsx │ │ │ │ │ ├── router.tsx │ │ │ │ │ └── summary-step │ │ │ │ │ │ ├── alert-queries.ts │ │ │ │ │ │ ├── summary-step.spec.tsx │ │ │ │ │ │ └── summary-step.tsx │ │ │ │ ├── create-key-alerts-modal │ │ │ │ │ ├── create-key-alerts-modal.spec.tsx │ │ │ │ │ └── create-key-alerts-modal.tsx │ │ │ │ ├── issue-overview │ │ │ │ │ ├── issue-overview.spec.tsx │ │ │ │ │ └── issue-overview.tsx │ │ │ │ ├── notification-channel-modal │ │ │ │ │ ├── notification-channel-modal.spec.tsx │ │ │ │ │ └── notification-channel-modal.tsx │ │ │ │ ├── notification-channel-overview │ │ │ │ │ ├── notification-channel-overview.spec.tsx │ │ │ │ │ └── notification-channel-overview.tsx │ │ │ │ ├── organization-alerting │ │ │ │ │ └── organization-alerting.tsx │ │ │ │ └── severity-indicator │ │ │ │ │ ├── severity-indicator.spec.tsx │ │ │ │ │ └── severity-indicator.tsx │ │ │ │ ├── database │ │ │ │ └── database-rds-dashboard │ │ │ │ │ ├── card-available-ram │ │ │ │ │ ├── card-available-ram.spec.tsx │ │ │ │ │ └── card-available-ram.tsx │ │ │ │ │ ├── card-avg-cpu-utilization │ │ │ │ │ ├── card-avg-cpu-utilization.spec.tsx │ │ │ │ │ └── card-avg-cpu-utilization.tsx │ │ │ │ │ ├── card-avg-db-connections │ │ │ │ │ ├── card-avg-db-connections.spec.tsx │ │ │ │ │ └── card-avg-db-connections.tsx │ │ │ │ │ ├── card-max-swap-usage │ │ │ │ │ ├── card-max-swap-usage.spec.tsx │ │ │ │ │ └── card-max-swap-usage.tsx │ │ │ │ │ ├── card-metric │ │ │ │ │ ├── card-metric.spec.tsx │ │ │ │ │ └── card-metric.tsx │ │ │ │ │ ├── card-unvacuumed-transactions │ │ │ │ │ ├── card-unvacuumed-transactions.spec.tsx │ │ │ │ │ └── card-unvacuumed-transactions.tsx │ │ │ │ │ ├── database-rds-dashboard.spec.tsx │ │ │ │ │ ├── database-rds-dashboard.tsx │ │ │ │ │ ├── modal-chart │ │ │ │ │ ├── modal-chart.spec.tsx │ │ │ │ │ └── modal-chart.tsx │ │ │ │ │ ├── rds-connections-chart │ │ │ │ │ ├── rds-connections-chart.spec.tsx │ │ │ │ │ └── rds-connections-chart.tsx │ │ │ │ │ ├── rds-cpu-chart │ │ │ │ │ ├── rds-cpu-chart.spec.tsx │ │ │ │ │ └── rds-cpu-chart.tsx │ │ │ │ │ ├── rds-disk-queue-depth-chart │ │ │ │ │ ├── rds-disk-queue-depth-chart.spec.tsx │ │ │ │ │ └── rds-disk-queue-depth-chart.tsx │ │ │ │ │ ├── rds-ram-chart │ │ │ │ │ ├── rds-ram-chart.spec.tsx │ │ │ │ │ └── rds-ram-chart.tsx │ │ │ │ │ ├── rds-read-iop-chart │ │ │ │ │ ├── rds-read-iop-chart.spec.tsx │ │ │ │ │ └── rds-read-iop-chart.tsx │ │ │ │ │ ├── rds-read-latency-chart │ │ │ │ │ ├── rds-read-latency-chart.spec.tsx │ │ │ │ │ └── rds-read-latency-chart.tsx │ │ │ │ │ ├── rds-storage-available-chart │ │ │ │ │ ├── rds-storage-available-chart.spec.tsx │ │ │ │ │ └── rds-storage-available-chart.tsx │ │ │ │ │ ├── rds-write-iop-chart │ │ │ │ │ ├── rds-write-iop-chart.spec.tsx │ │ │ │ │ └── rds-write-iop-chart.tsx │ │ │ │ │ ├── rds-write-latency-chart │ │ │ │ │ ├── rds-write-latency-chart.spec.tsx │ │ │ │ │ └── rds-write-latency-chart.tsx │ │ │ │ │ ├── select-time-range │ │ │ │ │ ├── select-time-range.spec.tsx │ │ │ │ │ └── select-time-range.tsx │ │ │ │ │ ├── util-chart │ │ │ │ │ ├── add-time-range-padding.spec.ts │ │ │ │ │ ├── add-time-range-padding.ts │ │ │ │ │ ├── format-timestamp.spec.ts │ │ │ │ │ ├── format-timestamp.ts │ │ │ │ │ ├── process-metrics-data.spec.ts │ │ │ │ │ └── process-metrics-data.ts │ │ │ │ │ └── util │ │ │ │ │ ├── format-number-short.spec.ts │ │ │ │ │ ├── format-number-short.ts │ │ │ │ │ ├── generate-db-instance.spec.ts │ │ │ │ │ └── generate-db-instance.ts │ │ │ │ ├── enable-observability-modal │ │ │ │ └── enable-observability-modal.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-alert-receivers │ │ │ │ │ └── use-alert-receivers.tsx │ │ │ │ ├── use-alert-rules-ghosted │ │ │ │ │ └── use-alert-rules-ghosted.tsx │ │ │ │ ├── use-alert-rules │ │ │ │ │ └── use-alert-rules.tsx │ │ │ │ ├── use-alerts │ │ │ │ │ └── use-alerts.tsx │ │ │ │ ├── use-clusters │ │ │ │ │ └── use-clusters.ts │ │ │ │ ├── use-container-name │ │ │ │ │ └── use-container-name.ts │ │ │ │ ├── use-create-alert-receiver │ │ │ │ │ └── use-create-alert-receiver.tsx │ │ │ │ ├── use-create-alert-rule │ │ │ │ │ └── use-create-alert-rule.tsx │ │ │ │ ├── use-delete-alert-receiver │ │ │ │ │ └── use-delete-alert-receiver.tsx │ │ │ │ ├── use-delete-alert-rule │ │ │ │ │ └── use-delete-alert-rule.tsx │ │ │ │ ├── use-edit-alert-receiver │ │ │ │ │ └── use-edit-alert-receiver.tsx │ │ │ │ ├── use-edit-alert-rule │ │ │ │ │ └── use-edit-alert-rule.tsx │ │ │ │ ├── use-environment │ │ │ │ │ └── use-environment.ts │ │ │ │ ├── use-events │ │ │ │ │ └── use-events.ts │ │ │ │ ├── use-hpa-name │ │ │ │ │ └── use-hpa-name.ts │ │ │ │ ├── use-ingress-name │ │ │ │ │ └── use-ingress-name.ts │ │ │ │ ├── use-instant-metrics │ │ │ │ │ └── use-instant-metrics.ts │ │ │ │ ├── use-loki-metrics │ │ │ │ │ └── use-loki-metrics.ts │ │ │ │ ├── use-metrics │ │ │ │ │ ├── align-timestamp.ts │ │ │ │ │ ├── grafana-util.spec.ts │ │ │ │ │ ├── grafana-util.ts │ │ │ │ │ ├── use-metrics.spec.ts │ │ │ │ │ └── use-metrics.ts │ │ │ │ ├── use-namespace │ │ │ │ │ └── use-namespace.ts │ │ │ │ └── use-validate-alert-receiver │ │ │ │ │ └── use-validate-alert-receiver.ts │ │ │ │ ├── local-chart │ │ │ │ ├── event-sidebar.spec.tsx │ │ │ │ ├── event-sidebar.tsx │ │ │ │ ├── local-chart.spec.tsx │ │ │ │ ├── local-chart.tsx │ │ │ │ ├── tooltip.spec.tsx │ │ │ │ ├── tooltip.tsx │ │ │ │ └── use-chart-events.tsx │ │ │ │ ├── modal-chart │ │ │ │ ├── modal-chart.spec.tsx │ │ │ │ └── modal-chart.tsx │ │ │ │ ├── service │ │ │ │ ├── service-alerting │ │ │ │ │ ├── service-alerting.spec.tsx │ │ │ │ │ └── service-alerting.tsx │ │ │ │ └── service-dashboard │ │ │ │ │ ├── card-http-errors │ │ │ │ │ ├── card-http-errors.spec.tsx │ │ │ │ │ └── card-http-errors.tsx │ │ │ │ │ ├── card-instance-status │ │ │ │ │ ├── card-instance-status.spec.tsx │ │ │ │ │ └── card-instance-status.tsx │ │ │ │ │ ├── card-log-errors │ │ │ │ │ ├── card-log-errors.spec.tsx │ │ │ │ │ └── card-log-errors.tsx │ │ │ │ │ ├── card-metric │ │ │ │ │ ├── card-metric.spec.tsx │ │ │ │ │ └── card-metric.tsx │ │ │ │ │ ├── card-percentile-99 │ │ │ │ │ ├── card-percentile-99.spec.tsx │ │ │ │ │ └── card-percentile-99.tsx │ │ │ │ │ ├── card-private-http-errors │ │ │ │ │ └── card-private-http-errors.tsx │ │ │ │ │ ├── card-private-percentile-99 │ │ │ │ │ └── card-private-percentile-99.tsx │ │ │ │ │ ├── card-storage │ │ │ │ │ ├── card-storage.spec.tsx │ │ │ │ │ └── card-storage.tsx │ │ │ │ │ ├── cpu-chart │ │ │ │ │ └── cpu-chart.tsx │ │ │ │ │ ├── disk-chart │ │ │ │ │ └── disk-chart.tsx │ │ │ │ │ ├── instance-http-errors-chart │ │ │ │ │ └── instance-http-errors-chart.tsx │ │ │ │ │ ├── instance-private-http-errors-chart │ │ │ │ │ └── instance-private-http-errors-chart.tsx │ │ │ │ │ ├── instance-status-chart │ │ │ │ │ └── instance-status-chart.tsx │ │ │ │ │ ├── memory-chart │ │ │ │ │ └── memory-chart.tsx │ │ │ │ │ ├── modal-chart │ │ │ │ │ └── modal-chart.tsx │ │ │ │ │ ├── network-request-duration-chart │ │ │ │ │ └── network-request-duration-chart.tsx │ │ │ │ │ ├── network-request-size-chart │ │ │ │ │ └── network-request-size-chart.tsx │ │ │ │ │ ├── network-request-status-chart │ │ │ │ │ └── network-request-status-chart.tsx │ │ │ │ │ ├── persistent-storage-chart │ │ │ │ │ └── persistent-storage-chart.tsx │ │ │ │ │ ├── private-network-request-duration-chart │ │ │ │ │ └── private-network-request-duration-chart.tsx │ │ │ │ │ ├── private-network-request-size-chart │ │ │ │ │ └── private-network-request-size-chart.tsx │ │ │ │ │ ├── private-network-request-status-chart │ │ │ │ │ └── private-network-request-status-chart.tsx │ │ │ │ │ ├── select-time-range │ │ │ │ │ ├── select-time-range.spec.tsx │ │ │ │ │ └── select-time-range.tsx │ │ │ │ │ ├── service-dashboard.spec.tsx │ │ │ │ │ └── service-dashboard.tsx │ │ │ │ ├── util-alerting │ │ │ │ ├── alert-type-guards.ts │ │ │ │ ├── generate-condition-description.spec.ts │ │ │ │ └── generate-condition-description.ts │ │ │ │ ├── util-chart │ │ │ │ ├── add-time-range-padding.spec.ts │ │ │ │ ├── add-time-range-padding.ts │ │ │ │ ├── convert-pod-name.spec.ts │ │ │ │ ├── convert-pod-name.ts │ │ │ │ ├── format-timestamp.spec.ts │ │ │ │ ├── format-timestamp.ts │ │ │ │ ├── process-metrics-data.spec.ts │ │ │ │ └── process-metrics-data.ts │ │ │ │ └── util-filter │ │ │ │ ├── dashboard-context.spec.tsx │ │ │ │ ├── dashboard-context.tsx │ │ │ │ ├── time-range.spec.ts │ │ │ │ └── time-range.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── organizations │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-organizations-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── annotation-create-edit-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── annotation-create-edit-modal.spec.tsx.snap │ │ │ │ ├── annotation-create-edit-modal.spec.tsx │ │ │ │ └── annotation-create-edit-modal.tsx │ │ │ │ ├── annotation-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── annotation-setting.spec.tsx.snap │ │ │ │ ├── annotation-setting.spec.tsx │ │ │ │ └── annotation-setting.tsx │ │ │ │ ├── container-registry-create-edit-modal │ │ │ │ ├── container-registry-create-edit-modal.spec.tsx │ │ │ │ └── container-registry-create-edit-modal.tsx │ │ │ │ ├── container-registry-form │ │ │ │ ├── container-registry-form.spec.tsx │ │ │ │ └── container-registry-form.tsx │ │ │ │ ├── container-registry-services-list-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── container-registry-services-list-modal.spec.tsx.snap │ │ │ │ ├── container-registry-services-list-modal.spec.tsx │ │ │ │ └── container-registry-services-list-modal.tsx │ │ │ │ ├── free-trial-banner │ │ │ │ └── free-trial-banner.tsx │ │ │ │ ├── git-branch-settings │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── git-branch-settings.spec.tsx.snap │ │ │ │ ├── git-branch-settings.spec.tsx │ │ │ │ └── git-branch-settings.tsx │ │ │ │ ├── git-provider-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── git-provider-setting.spec.tsx.snap │ │ │ │ ├── git-provider-setting.spec.tsx │ │ │ │ └── git-provider-setting.tsx │ │ │ │ ├── git-public-repository-settings │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── git-public-repository-settings.spec.tsx.snap │ │ │ │ ├── git-public-repository-settings.spec.tsx │ │ │ │ └── git-public-repository-settings.tsx │ │ │ │ ├── git-repository-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── git-repository-setting.spec.tsx.snap │ │ │ │ ├── git-repository-setting.spec.tsx │ │ │ │ └── git-repository-setting.tsx │ │ │ │ ├── git-token-create-edit-modal │ │ │ │ ├── git-token-create-edit-modal.spec.tsx │ │ │ │ └── git-token-create-edit-modal.tsx │ │ │ │ ├── git-token-list │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── git-token-list.spec.tsx.snap │ │ │ │ ├── git-token-list.spec.tsx │ │ │ │ └── git-token-list.tsx │ │ │ │ ├── git-token-services-list-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── git-token-services-list-modal.spec.tsx.snap │ │ │ │ ├── git-token-services-list-modal.spec.tsx │ │ │ │ └── git-token-services-list-modal.tsx │ │ │ │ ├── helm-repository-create-edit-modal │ │ │ │ ├── helm-repository-create-edit-modal.spec.tsx │ │ │ │ └── helm-repository-create-edit-modal.tsx │ │ │ │ ├── helm-repository-services-list-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── helm-repository-services-list-modal.spec.tsx.snap │ │ │ │ ├── helm-repository-services-list-modal.spec.tsx │ │ │ │ └── helm-repository-services-list-modal.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-accept-invite-member │ │ │ │ │ └── use-accept-invite-member.ts │ │ │ │ ├── use-add-credit-card │ │ │ │ │ └── use-add-credit-card.ts │ │ │ │ ├── use-add-credit-code │ │ │ │ │ └── use-add-credit-code.ts │ │ │ │ ├── use-annotations-group-associated-items │ │ │ │ │ └── use-annotations-group-associated-items.ts │ │ │ │ ├── use-annotations-groups │ │ │ │ │ └── use-annotations-groups.ts │ │ │ │ ├── use-api-tokens │ │ │ │ │ └── use-api-tokens.ts │ │ │ │ ├── use-auth-providers │ │ │ │ │ └── use-auth-providers.ts │ │ │ │ ├── use-available-container-registries │ │ │ │ │ └── use-available-container-registries.ts │ │ │ │ ├── use-available-helm-repositories │ │ │ │ │ └── use-available-helm-repositories.ts │ │ │ │ ├── use-available-roles │ │ │ │ │ └── use-available-roles.ts │ │ │ │ ├── use-billing-info │ │ │ │ │ └── use-billing-info.ts │ │ │ │ ├── use-branches │ │ │ │ │ └── use-branches.ts │ │ │ │ ├── use-change-plan │ │ │ │ │ └── use-change-plan.ts │ │ │ │ ├── use-connect-github-app │ │ │ │ │ └── use-connect-github-app.ts │ │ │ │ ├── use-container-images │ │ │ │ │ └── use-container-images.ts │ │ │ │ ├── use-container-registries │ │ │ │ │ └── use-container-registries.ts │ │ │ │ ├── use-container-registry-associated-services │ │ │ │ │ └── use-container-registry-associated-services.ts │ │ │ │ ├── use-container-registry │ │ │ │ │ └── use-container-registry.ts │ │ │ │ ├── use-container-versions │ │ │ │ │ ├── use-container-versions.spec.ts │ │ │ │ │ └── use-container-versions.ts │ │ │ │ ├── use-create-annotations-group │ │ │ │ │ └── use-create-annotations-group.ts │ │ │ │ ├── use-create-api-token │ │ │ │ │ └── use-create-api-token.ts │ │ │ │ ├── use-create-container-registry │ │ │ │ │ └── use-create-container-registry.ts │ │ │ │ ├── use-create-custom-role │ │ │ │ │ └── use-create-custom-role.ts │ │ │ │ ├── use-create-git-token │ │ │ │ │ └── use-create-git-token.ts │ │ │ │ ├── use-create-helm-repository │ │ │ │ │ └── use-create-helm-repository.ts │ │ │ │ ├── use-create-invite-member │ │ │ │ │ └── use-create-invite-member.ts │ │ │ │ ├── use-create-labels-group │ │ │ │ │ └── use-create-labels-group.ts │ │ │ │ ├── use-create-organization │ │ │ │ │ └── use-create-organization.ts │ │ │ │ ├── use-create-webhook │ │ │ │ │ └── use-create-webhook.ts │ │ │ │ ├── use-credit-cards │ │ │ │ │ └── use-credit-cards.ts │ │ │ │ ├── use-current-cost │ │ │ │ │ └── use-current-cost.ts │ │ │ │ ├── use-custom-role │ │ │ │ │ └── use-custom-role.ts │ │ │ │ ├── use-delete-annotations-group │ │ │ │ │ └── use-delete-annotations-group.ts │ │ │ │ ├── use-delete-api-token │ │ │ │ │ └── use-delete-api-token.ts │ │ │ │ ├── use-delete-container-registry │ │ │ │ │ └── use-delete-container-registry.ts │ │ │ │ ├── use-delete-credit-card │ │ │ │ │ └── use-delete-credit-card.ts │ │ │ │ ├── use-delete-custom-role │ │ │ │ │ └── use-delete-custom-role.ts │ │ │ │ ├── use-delete-git-token │ │ │ │ │ └── use-delete-git-token.ts │ │ │ │ ├── use-delete-helm-repository │ │ │ │ │ └── use-delete-helm-repository.ts │ │ │ │ ├── use-delete-invite-member │ │ │ │ │ └── use-delete-invite-member.ts │ │ │ │ ├── use-delete-labels-group │ │ │ │ │ └── use-delete-labels-group.ts │ │ │ │ ├── use-delete-member │ │ │ │ │ └── use-delete-member.ts │ │ │ │ ├── use-delete-organization │ │ │ │ │ └── use-delete-organization.ts │ │ │ │ ├── use-delete-webhook │ │ │ │ │ └── use-delete-webhook.ts │ │ │ │ ├── use-disconnect-github-app │ │ │ │ │ └── use-disconnect-github-app.ts │ │ │ │ ├── use-edit-annotations-group │ │ │ │ │ └── use-edit-annotations-group.ts │ │ │ │ ├── use-edit-billing-info │ │ │ │ │ └── use-edit-billing-info.ts │ │ │ │ ├── use-edit-container-registry │ │ │ │ │ └── use-edit-container-registry.ts │ │ │ │ ├── use-edit-custom-role │ │ │ │ │ └── use-edit-custom-role.ts │ │ │ │ ├── use-edit-git-token │ │ │ │ │ └── use-edit-git-token.ts │ │ │ │ ├── use-edit-helm-repository │ │ │ │ │ └── use-edit-helm-repository.ts │ │ │ │ ├── use-edit-labels-group │ │ │ │ │ └── use-edit-labels-group.ts │ │ │ │ ├── use-edit-member-role │ │ │ │ │ └── use-edit-member-role.ts │ │ │ │ ├── use-edit-organization │ │ │ │ │ └── use-edit-organization.ts │ │ │ │ ├── use-edit-webhook │ │ │ │ │ └── use-edit-webhook.ts │ │ │ │ ├── use-generate-billing-usage-report │ │ │ │ │ └── use-generate-billing-usage-report.ts │ │ │ │ ├── use-git-token-associated-services │ │ │ │ │ └── use-git-token-associated-services.ts │ │ │ │ ├── use-git-tokens │ │ │ │ │ └── use-git-tokens.ts │ │ │ │ ├── use-helm-repositories │ │ │ │ │ └── use-helm-repositories.ts │ │ │ │ ├── use-helm-repository-associated-services │ │ │ │ │ └── use-helm-repository-associated-services.ts │ │ │ │ ├── use-helm-repository │ │ │ │ │ └── use-helm-repository.ts │ │ │ │ ├── use-invite-members │ │ │ │ │ └── use-invite-members.ts │ │ │ │ ├── use-invoice-url │ │ │ │ │ └── use-invoice-url.ts │ │ │ │ ├── use-invoices │ │ │ │ │ └── use-invoices.ts │ │ │ │ ├── use-labels-group-associated-items │ │ │ │ │ └── use-labels-group-associated-items.ts │ │ │ │ ├── use-labels-groups │ │ │ │ │ └── use-labels-groups.ts │ │ │ │ ├── use-list-tfvars-files-from-git-repo │ │ │ │ │ └── use-list-tfvars-files-from-git-repo.ts │ │ │ │ ├── use-member-invitation │ │ │ │ │ └── use-member-invitation.ts │ │ │ │ ├── use-members │ │ │ │ │ └── use-members.ts │ │ │ │ ├── use-organization-credentials │ │ │ │ │ └── use-organization-credentials.ts │ │ │ │ ├── use-organization │ │ │ │ │ └── use-organization.ts │ │ │ │ ├── use-organizations │ │ │ │ │ └── use-organizations.ts │ │ │ │ ├── use-parse-terraform-variables-from-git-repo │ │ │ │ │ └── use-parse-terraform-variables-from-git-repo.ts │ │ │ │ ├── use-repositories │ │ │ │ │ └── use-repositories.ts │ │ │ │ ├── use-transfer-ownership-member-role │ │ │ │ │ └── use-transfer-ownership-member-role.ts │ │ │ │ └── use-webhooks │ │ │ │ │ └── use-webhooks.ts │ │ │ │ ├── invoice-banner │ │ │ │ └── invoice-banner.tsx │ │ │ │ ├── label-annotation-items-list-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── label-annotation-items-list-modal.spec.tsx.snap │ │ │ │ ├── label-annotation-items-list-modal.spec.tsx │ │ │ │ └── label-annotation-items-list-modal.tsx │ │ │ │ ├── label-create-edit-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── label-create-edit-modal.spec.tsx.snap │ │ │ │ ├── label-create-edit-modal.spec.tsx │ │ │ │ └── label-create-edit-modal.tsx │ │ │ │ └── label-setting │ │ │ │ ├── __snapshots__ │ │ │ │ └── label-setting.spec.tsx.snap │ │ │ │ ├── label-setting.spec.tsx │ │ │ │ └── label-setting.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── projects │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-projects-data-access.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── create-project-modal │ │ │ │ ├── create-project-modal.spec.tsx │ │ │ │ └── create-project-modal.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-create-deployment-rule │ │ │ │ │ └── use-create-deployment-rule.ts │ │ │ │ ├── use-create-project │ │ │ │ │ └── use-create-project.ts │ │ │ │ ├── use-delete-deployment-rule │ │ │ │ │ └── use-delete-deployment-rule.ts │ │ │ │ ├── use-delete-project │ │ │ │ │ └── use-delete-project.ts │ │ │ │ ├── use-deployment-rule │ │ │ │ │ └── use-deployment-rule.ts │ │ │ │ ├── use-edit-deployment-rule │ │ │ │ │ └── use-edit-deployment-rule.ts │ │ │ │ ├── use-edit-deployment-rules-priority-order │ │ │ │ │ └── use-edit-deployment-rules-priority-order.ts │ │ │ │ ├── use-edit-project │ │ │ │ │ └── use-edit-project.ts │ │ │ │ ├── use-list-deployment-rules │ │ │ │ │ └── use-list-deployment-rules.ts │ │ │ │ ├── use-project │ │ │ │ │ └── use-project.ts │ │ │ │ └── use-projects │ │ │ │ │ └── use-projects.ts │ │ │ │ └── project-avatar │ │ │ │ └── project-avatar.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── service-helm │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-service-helm-data-access.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── deployment-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── deployment-setting.spec.tsx.snap │ │ │ │ ├── deployment-setting.spec.tsx │ │ │ │ └── deployment-setting.tsx │ │ │ │ ├── helm-default-values-preview │ │ │ │ ├── helm-default-values-preview.spec.tsx │ │ │ │ └── helm-default-values-preview.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-create-helm-service │ │ │ │ │ └── use-create-helm-service.ts │ │ │ │ ├── use-helm-charts │ │ │ │ │ └── use-helm-charts.ts │ │ │ │ ├── use-helm-default-values │ │ │ │ │ └── use-helm-default-values.ts │ │ │ │ ├── use-helm-repositories │ │ │ │ │ └── use-helm-repositories.ts │ │ │ │ └── use-kubernetes-services │ │ │ │ │ └── use-kubernetes-services.tsx │ │ │ │ ├── networking-port-setting-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── networking-port-setting-modal.spec.tsx.snap │ │ │ │ ├── networking-port-setting-modal.spec.tsx │ │ │ │ └── networking-port-setting-modal.tsx │ │ │ │ ├── networking-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── networking-setting.spec.tsx.snap │ │ │ │ ├── networking-setting.spec.tsx │ │ │ │ └── networking-setting.tsx │ │ │ │ ├── source-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── source-setting.spec.tsx.snap │ │ │ │ ├── source-setting.spec.tsx │ │ │ │ └── source-setting.tsx │ │ │ │ ├── values-override-arguments-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── values-override-arguments-setting.spec.tsx.snap │ │ │ │ ├── values-override-arguments-setting.spec.tsx │ │ │ │ └── values-override-arguments-setting.tsx │ │ │ │ ├── values-override-files-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── values-override-files-setting.spec.tsx.snap │ │ │ │ ├── values-override-files-setting.spec.tsx │ │ │ │ └── values-override-files-setting.tsx │ │ │ │ ├── values-override-yaml-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── values-override-yaml-modal.spec.tsx.snap │ │ │ │ ├── values-override-yaml-modal.spec.tsx │ │ │ │ └── values-override-yaml-modal.tsx │ │ │ │ └── values-override-yaml-setting │ │ │ │ ├── __snapshots__ │ │ │ │ └── values-override-yaml-setting.spec.tsx.snap │ │ │ │ ├── values-override-yaml-setting.spec.tsx │ │ │ │ └── values-override-yaml-setting.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── service-logs │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-service-logs-data-access.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── breadcrumb-deployment-history │ │ │ │ ├── breadcrumb-deployment-history.spec.tsx │ │ │ │ └── breadcrumb-deployment-history.tsx │ │ │ │ ├── breadcrumb-deployment-logs │ │ │ │ ├── breadcrumb-deployment-logs.spec.tsx │ │ │ │ ├── breadcrumb-deployment-logs.tsx │ │ │ │ └── stage-item │ │ │ │ │ └── stage-item.tsx │ │ │ │ ├── deployment-logs-placeholder │ │ │ │ ├── deployment-logs-placeholder.spec.tsx │ │ │ │ └── deployment-logs-placeholder.tsx │ │ │ │ ├── header-logs │ │ │ │ ├── header-logs.spec.tsx │ │ │ │ └── header-logs.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-deployment-history │ │ │ │ │ └── use-deployment-history.ts │ │ │ │ ├── use-deployment-logs │ │ │ │ │ └── use-deployment-logs.ts │ │ │ │ ├── use-deployment-status │ │ │ │ │ └── use-deployment-status.ts │ │ │ │ ├── use-service-deployment-id │ │ │ │ │ └── use-service-deployment-id.ts │ │ │ │ ├── use-service-history-logs │ │ │ │ │ └── use-service-history-logs.ts │ │ │ │ ├── use-service-instances │ │ │ │ │ └── use-service-instances.ts │ │ │ │ ├── use-service-levels │ │ │ │ │ └── use-service-levels.ts │ │ │ │ └── use-service-live-logs │ │ │ │ │ └── use-service-live-logs.ts │ │ │ │ ├── list-deployment-logs │ │ │ │ ├── filters-stage-step │ │ │ │ │ ├── filters-stage-step.spec.tsx │ │ │ │ │ └── filters-stage-step.tsx │ │ │ │ ├── list-deployment-logs.spec.tsx │ │ │ │ ├── list-deployment-logs.tsx │ │ │ │ └── row-deployment-logs │ │ │ │ │ ├── row-deployment-logs.spec.tsx │ │ │ │ │ └── row-deployment-logs.tsx │ │ │ │ ├── list-service-logs │ │ │ │ ├── header-service-logs │ │ │ │ │ └── header-service-logs.tsx │ │ │ │ ├── list-service-logs.spec.tsx │ │ │ │ ├── list-service-logs.tsx │ │ │ │ ├── row-service-logs │ │ │ │ │ ├── row-service-logs.spec.tsx │ │ │ │ │ ├── row-service-logs.tsx │ │ │ │ │ └── style.scss │ │ │ │ └── service-logs-context │ │ │ │ │ └── service-logs-context.tsx │ │ │ │ ├── pod-health-chips │ │ │ │ ├── pod-health-chips.spec.tsx │ │ │ │ └── pod-health-chips.tsx │ │ │ │ ├── progress-indicator │ │ │ │ ├── progress-indicator.spec.tsx │ │ │ │ └── progress-indicator.tsx │ │ │ │ ├── search-service-logs │ │ │ │ ├── search-service-logs.spec.tsx │ │ │ │ └── search-service-logs.tsx │ │ │ │ ├── service-logs-placeholder │ │ │ │ ├── service-logs-placeholder.spec.tsx │ │ │ │ └── service-logs-placeholder.tsx │ │ │ │ ├── service-stage-ids-context │ │ │ │ ├── service-stage-ids-context.spec.tsx │ │ │ │ └── service-stage-ids-context.tsx │ │ │ │ ├── show-new-logs-button │ │ │ │ ├── show-new-logs-button.spec.tsx │ │ │ │ └── show-new-logs-button.tsx │ │ │ │ ├── show-previous-logs-button │ │ │ │ ├── show-previous-logs-button.spec.tsx │ │ │ │ └── show-previous-logs-button.tsx │ │ │ │ └── sidebar-pod-statuses │ │ │ │ ├── donut-chart │ │ │ │ ├── donut-chart.spec.tsx │ │ │ │ └── donut-chart.tsx │ │ │ │ ├── sidebar-pod-statuses.spec.tsx │ │ │ │ └── sidebar-pod-statuses.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── service-terraform │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-service-terraform-data-access.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── lib │ │ │ │ ├── hooks │ │ │ │ │ └── use-terraform-available-versions │ │ │ │ │ │ └── use-terraform-available-versions.ts │ │ │ │ └── terraform-variables-settings │ │ │ │ │ ├── terraform-configuration-settings │ │ │ │ │ └── terraform-configuration-settings.tsx │ │ │ │ │ ├── terraform-tfvars-popover │ │ │ │ │ ├── terraform-tfvars-popover.spec.tsx │ │ │ │ │ └── terraform-tfvars-popover.tsx │ │ │ │ │ ├── terraform-variables-context.tsx │ │ │ │ │ ├── terraform-variables-settings.tsx │ │ │ │ │ ├── terraform-variables-table │ │ │ │ │ ├── terraform-variables-table.spec.tsx │ │ │ │ │ └── terraform-variables-table.tsx │ │ │ │ │ ├── terraform-variables-utils.spec.ts │ │ │ │ │ └── terraform-variables-utils.ts │ │ │ └── source-setting │ │ │ │ └── source-setting.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── services │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-services-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── advanced-settings │ │ │ │ ├── advanced-settings.spec.tsx │ │ │ │ └── advanced-settings.tsx │ │ │ │ ├── auto-deploy-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── auto-deploy-setting.spec.tsx.snap │ │ │ │ ├── auto-deploy-setting.spec.tsx │ │ │ │ └── auto-deploy-setting.tsx │ │ │ │ ├── build-settings │ │ │ │ └── build-settings.tsx │ │ │ │ ├── confirmation-cancel-lifecycle-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── confirmation-cancel-lifecycle-modal.spec.tsx.snap │ │ │ │ ├── confirmation-cancel-lifecycle-modal.spec.tsx │ │ │ │ └── confirmation-cancel-lifecycle-modal.tsx │ │ │ │ ├── dockerfile-raw-modal │ │ │ │ └── dockerfile-raw-modal.tsx │ │ │ │ ├── dockerfile-settings │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── dockerfile-settings.spec.tsx.snap │ │ │ │ ├── dockerfile-settings.spec.tsx │ │ │ │ └── dockerfile-settings.tsx │ │ │ │ ├── force-unlock-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── force-unlock-modal.spec.tsx.snap │ │ │ │ ├── force-unlock-modal.spec.tsx │ │ │ │ └── force-unlock-modal.tsx │ │ │ │ ├── general-setting │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── general-setting.spec.tsx.snap │ │ │ │ ├── general-setting.spec.tsx │ │ │ │ └── general-setting.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-advanced-settings │ │ │ │ │ └── use-advanced-settings.ts │ │ │ │ ├── use-cancel-deployment-queue-service │ │ │ │ │ └── use-cancel-deployment-queue-service.ts │ │ │ │ ├── use-cancel-deployment-service │ │ │ │ │ └── use-cancel-deployment-service.ts │ │ │ │ ├── use-check-custom-domains │ │ │ │ │ └── use-check-custom-domains.ts │ │ │ │ ├── use-check-running-status-closed │ │ │ │ │ └── use-check-running-status-closed.ts │ │ │ │ ├── use-clean-failed-jobs │ │ │ │ │ └── use-clean-failed-jobs.ts │ │ │ │ ├── use-clone-service │ │ │ │ │ └── use-clone-service.ts │ │ │ │ ├── use-commits │ │ │ │ │ └── use-commits.ts │ │ │ │ ├── use-create-deployment-restriction │ │ │ │ │ └── use-create-deployment-restriction.ts │ │ │ │ ├── use-create-service │ │ │ │ │ └── use-create-service.ts │ │ │ │ ├── use-default-advanced-settings │ │ │ │ │ └── use-default-advanced-settings.ts │ │ │ │ ├── use-delete-all-services │ │ │ │ │ └── use-delete-all-services.ts │ │ │ │ ├── use-delete-deployment-restriction │ │ │ │ │ └── use-delete-deployment-restriction.ts │ │ │ │ ├── use-delete-service │ │ │ │ │ └── use-delete-service.ts │ │ │ │ ├── use-deploy-all-services │ │ │ │ │ └── use-deploy-all-services.ts │ │ │ │ ├── use-deploy-service │ │ │ │ │ └── use-deploy-service.ts │ │ │ │ ├── use-deployment-history │ │ │ │ │ └── use-deployment-history.ts │ │ │ │ ├── use-deployment-queue │ │ │ │ │ └── use-deployment-queue.ts │ │ │ │ ├── use-deployment-restrictions │ │ │ │ │ └── use-deployment-restrictions.ts │ │ │ │ ├── use-deployment-status │ │ │ │ │ └── use-deployment-status.ts │ │ │ │ ├── use-edit-advanced-settings │ │ │ │ │ └── use-edit-advanced-settings.ts │ │ │ │ ├── use-edit-deployment-restriction │ │ │ │ │ └── use-edit-deployment-restriction.ts │ │ │ │ ├── use-edit-service │ │ │ │ │ └── use-edit-service.ts │ │ │ │ ├── use-environments │ │ │ │ │ └── use-environments.ts │ │ │ │ ├── use-favorite-services │ │ │ │ │ ├── use-favorite-services.spec.ts │ │ │ │ │ └── use-favorite-services.ts │ │ │ │ ├── use-helm-charts-versions │ │ │ │ │ └── use-helm-charts-versions.ts │ │ │ │ ├── use-last-deployed-commit │ │ │ │ │ └── use-last-deployed-commit.ts │ │ │ │ ├── use-links │ │ │ │ │ └── use-links.ts │ │ │ │ ├── use-list-statuses │ │ │ │ │ └── use-list-statuses.ts │ │ │ │ ├── use-list-timezone │ │ │ │ │ └── use-list-timezone.ts │ │ │ │ ├── use-master-credentials │ │ │ │ │ └── use-master-credentials.ts │ │ │ │ ├── use-metrics │ │ │ │ │ └── use-metrics.ts │ │ │ │ ├── use-recent-services │ │ │ │ │ ├── use-recent-services.spec.ts │ │ │ │ │ └── use-recent-services.ts │ │ │ │ ├── use-restart-all-services │ │ │ │ │ └── use-restart-all-services.ts │ │ │ │ ├── use-restart-service │ │ │ │ │ └── use-restart-service.ts │ │ │ │ ├── use-running-status │ │ │ │ │ └── use-running-status.ts │ │ │ │ ├── use-service-statuses │ │ │ │ │ └── use-service-statuses.ts │ │ │ │ ├── use-service-type │ │ │ │ │ └── use-service-type.ts │ │ │ │ ├── use-service │ │ │ │ │ └── use-service.ts │ │ │ │ ├── use-services │ │ │ │ │ └── use-services.ts │ │ │ │ ├── use-stop-all-services │ │ │ │ │ └── use-stop-all-services.ts │ │ │ │ ├── use-stop-service │ │ │ │ │ └── use-stop-service.ts │ │ │ │ ├── use-uninstall-all-services │ │ │ │ │ └── use-uninstall-all-services.ts │ │ │ │ └── use-uninstall-service │ │ │ │ │ └── use-uninstall-service.ts │ │ │ │ ├── last-commit-author │ │ │ │ └── last-commit-author.tsx │ │ │ │ ├── last-commit │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── last-commit.spec.tsx.snap │ │ │ │ ├── last-commit.spec.tsx │ │ │ │ └── last-commit.tsx │ │ │ │ ├── last-version │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── last-version.spec.tsx.snap │ │ │ │ ├── last-version.spec.tsx │ │ │ │ └── last-version.tsx │ │ │ │ ├── need-redeploy-flag │ │ │ │ ├── need-redeploy-flag.spec.tsx │ │ │ │ └── need-redeploy-flag.tsx │ │ │ │ ├── pod-details │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── pod-details.spec.tsx.snap │ │ │ │ ├── pod-details.spec.tsx │ │ │ │ └── pod-details.tsx │ │ │ │ ├── pod-statuses-callout │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── pod-statuses-callout.spec.tsx.snap │ │ │ │ ├── pod-statuses-callout.spec.tsx │ │ │ │ └── pod-statuses-callout.tsx │ │ │ │ ├── pods-metrics │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── pods-metrics.spec.tsx.snap │ │ │ │ ├── empty-state.tsx │ │ │ │ ├── pods-metrics-skeleton.tsx │ │ │ │ ├── pods-metrics.spec.tsx │ │ │ │ └── pods-metrics.tsx │ │ │ │ ├── redeploy-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── redeploy-modal.spec.tsx.snap │ │ │ │ ├── redeploy-modal.spec.tsx │ │ │ │ └── redeploy-modal.tsx │ │ │ │ ├── select-commit-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── select-commit-modal.spec.tsx.snap │ │ │ │ ├── select-commit-modal.spec.tsx │ │ │ │ └── select-commit-modal.tsx │ │ │ │ ├── select-version-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── select-version-modal.spec.tsx.snap │ │ │ │ ├── select-version-modal.spec.tsx │ │ │ │ └── select-version-modal.tsx │ │ │ │ ├── service-access-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-access-modal.spec.tsx.snap │ │ │ │ ├── copy-button │ │ │ │ │ ├── copy-button.spec.tsx │ │ │ │ │ └── copy-button.tsx │ │ │ │ ├── section-expand │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── section-expand.spec.tsx.snap │ │ │ │ │ ├── section-expand.spec.tsx │ │ │ │ │ └── section-expand.tsx │ │ │ │ ├── service-access-modal.spec.tsx │ │ │ │ └── service-access-modal.tsx │ │ │ │ ├── service-action-toolbar │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-action-toolbar.spec.tsx.snap │ │ │ │ ├── service-action-toolbar.spec.tsx │ │ │ │ └── service-action-toolbar.tsx │ │ │ │ ├── service-avatar-switcher │ │ │ │ └── service-avatar-switcher.tsx │ │ │ │ ├── service-avatar │ │ │ │ └── service-avatar.tsx │ │ │ │ ├── service-clone-modal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-clone-modal.spec.tsx.snap │ │ │ │ ├── service-clone-modal.spec.tsx │ │ │ │ └── service-clone-modal.tsx │ │ │ │ ├── service-deployment-list │ │ │ │ ├── service-deployment-list-skeleton.tsx │ │ │ │ ├── service-deployment-list.spec.tsx │ │ │ │ ├── service-deployment-list.tsx │ │ │ │ └── table-filter-trigger-by │ │ │ │ │ ├── table-filter-trigger-by.spec.tsx │ │ │ │ │ └── table-filter-trigger-by.tsx │ │ │ │ ├── service-deployment-status-label │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-deployment-status-label.spec.tsx.snap │ │ │ │ ├── service-deployment-status-label.spec.tsx │ │ │ │ └── service-deployment-status-label.tsx │ │ │ │ ├── service-details │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-details.spec.tsx.snap │ │ │ │ ├── service-details-skeleton.tsx │ │ │ │ ├── service-details.spec.tsx │ │ │ │ └── service-details.tsx │ │ │ │ ├── service-icon │ │ │ │ └── service-icon.tsx │ │ │ │ ├── service-links-popover │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-links-popover.spec.tsx.snap │ │ │ │ ├── service-links-popover.spec.tsx │ │ │ │ └── service-links-popover.tsx │ │ │ │ ├── service-list │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── service-list-action-bar.spec.tsx.snap │ │ │ │ │ └── service-list.spec.tsx.snap │ │ │ │ ├── service-list-action-bar.spec.tsx │ │ │ │ ├── service-list-action-bar.tsx │ │ │ │ ├── service-list-skeleton.tsx │ │ │ │ ├── service-list.spec.tsx │ │ │ │ └── service-list.tsx │ │ │ │ ├── service-remove-modal │ │ │ │ ├── service-remove-modal.tsx │ │ │ │ └── use-service-remove-modal │ │ │ │ │ └── use-service-remove-modal.tsx │ │ │ │ ├── service-state-chip │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-state-chip.spec.tsx.snap │ │ │ │ ├── service-state-chip.spec.tsx │ │ │ │ └── service-state-chip.tsx │ │ │ │ ├── service-template-indicator │ │ │ │ └── service-template-indicator.tsx │ │ │ │ ├── service-terminal │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── service-terminal.spec.tsx.snap │ │ │ │ ├── input-search │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── input-search.spec.tsx.snap │ │ │ │ │ ├── input-search.spec.tsx │ │ │ │ │ └── input-search.tsx │ │ │ │ ├── service-terminal-provider.tsx │ │ │ │ ├── service-terminal.spec.tsx │ │ │ │ └── service-terminal.tsx │ │ │ │ └── timezone-setting │ │ │ │ ├── __snapshots__ │ │ │ │ └── timezone-setting.spec.tsx.snap │ │ │ │ ├── timezone-setting.spec.tsx │ │ │ │ └── timezone-setting.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── users-sign-up │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-users-sign-up-data-access.ts │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.lib.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── hooks │ │ │ │ ├── use-create-user-sign-up │ │ │ │ └── use-create-user-sign-up.ts │ │ │ │ ├── use-signup-cargo │ │ │ │ └── use-signup-cargo.ts │ │ │ │ └── use-user-sign-up │ │ │ │ └── use-user-sign-up.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ └── variables │ │ ├── data-access │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── domains-variables-data-access.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ │ ├── feature │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── code-editor-variable │ │ │ │ ├── code-editor-variable.spec.tsx │ │ │ │ └── code-editor-variable.tsx │ │ │ │ ├── create-update-variable-modal │ │ │ │ └── create-update-variable-modal.tsx │ │ │ │ ├── dropdown-variable │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── dropdown-variable.spec.tsx.snap │ │ │ │ ├── dropdown-variable.spec.tsx │ │ │ │ └── dropdown-variable.tsx │ │ │ │ ├── field-variable-suggestion │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── field-variable-suggestion.spec.tsx.snap │ │ │ │ ├── field-variable-suggestion.spec.tsx │ │ │ │ └── field-variable-suggestion.tsx │ │ │ │ ├── flow-create-variable │ │ │ │ ├── flow-create-variable.spec.tsx │ │ │ │ ├── flow-create-variable.tsx │ │ │ │ └── variable-row │ │ │ │ │ ├── variable-row.spec.tsx │ │ │ │ │ └── variable-row.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-create-variable-alias │ │ │ │ │ └── use-create-variable-alias.ts │ │ │ │ ├── use-create-variable-override │ │ │ │ │ └── use-create-variable-override.ts │ │ │ │ ├── use-create-variable │ │ │ │ │ └── use-create-variable.ts │ │ │ │ ├── use-delete-variable │ │ │ │ │ └── use-delete-variable.ts │ │ │ │ ├── use-edit-variable │ │ │ │ │ └── use-edit-variable.ts │ │ │ │ ├── use-import-variables │ │ │ │ │ └── use-import-variables.ts │ │ │ │ └── use-variables │ │ │ │ │ └── use-variables.ts │ │ │ │ ├── output-variables │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── output-variables.spec.tsx.snap │ │ │ │ ├── output-variables.spec.tsx │ │ │ │ └── output-variables.tsx │ │ │ │ ├── show-all-variables-toggle │ │ │ │ └── show-all-variables-toggle.tsx │ │ │ │ ├── variable-list │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── variable-list.spec.tsx.snap │ │ │ │ ├── variable-list-action-bar.tsx │ │ │ │ ├── variable-list-skeleton.tsx │ │ │ │ ├── variable-list.spec.tsx │ │ │ │ └── variable-list.tsx │ │ │ │ ├── variables-action-toolbar │ │ │ │ └── variables-action-toolbar.tsx │ │ │ │ └── variables-context │ │ │ │ └── variables-context.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ │ └── util │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── sort-variables │ │ │ ├── sort-variables.spec.ts │ │ │ └── sort-variables.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── pages │ ├── application │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── import-environment-variable-modal-feature │ │ │ │ │ ├── import-environment-variable-modal-feature.spec.tsx │ │ │ │ │ ├── import-environment-variable-modal-feature.tsx │ │ │ │ │ └── utils │ │ │ │ │ │ ├── change-scope-all.tsx │ │ │ │ │ │ ├── delete-entry.tsx │ │ │ │ │ │ ├── file-to-form.spec.tsx │ │ │ │ │ │ ├── file-to-form.tsx │ │ │ │ │ │ ├── form-check.spec.ts │ │ │ │ │ │ ├── form-check.tsx │ │ │ │ │ │ ├── handle-submit.spec.tsx │ │ │ │ │ │ ├── handle-submit.tsx │ │ │ │ │ │ ├── on-drop.tsx │ │ │ │ │ │ └── trigger-toggle-all.tsx │ │ │ │ ├── page-alerting-create-feature │ │ │ │ │ └── page-alerting-create-feature.tsx │ │ │ │ ├── page-alerting-edit-feature │ │ │ │ │ └── page-alerting-edit-feature.tsx │ │ │ │ ├── page-deployments-feature │ │ │ │ │ ├── page-deployments-feature.spec.tsx │ │ │ │ │ └── page-deployments-feature.tsx │ │ │ │ ├── page-general-feature │ │ │ │ │ ├── page-general-feature.tsx │ │ │ │ │ └── page-general.spec.tsx │ │ │ │ ├── page-monitoring-alerts-feature │ │ │ │ │ └── page-monitoring-alerts-feature.tsx │ │ │ │ ├── page-monitoring-dashboard-feature │ │ │ │ │ ├── page-monitoring-dashboard-feature.tsx │ │ │ │ │ └── placeholder-monitoring.tsx │ │ │ │ ├── page-monitoring-feature │ │ │ │ │ └── page-monitoring-feature.tsx │ │ │ │ ├── page-settings-advanced-feature │ │ │ │ │ └── page-settings-advanced-feature.tsx │ │ │ │ ├── page-settings-configure-job-feature │ │ │ │ │ ├── page-settings-configure-job-feature.spec.tsx │ │ │ │ │ └── page-settings-configure-job-feature.tsx │ │ │ │ ├── page-settings-danger-zone-feature │ │ │ │ │ ├── page-settings-danger-zone-feature.spec.tsx │ │ │ │ │ └── page-settings-danger-zone-feature.tsx │ │ │ │ ├── page-settings-deployment-restrictions-feature │ │ │ │ │ ├── crud-modal-feature │ │ │ │ │ │ ├── crud-modal-feature.spec.tsx │ │ │ │ │ │ └── crud-modal-feature.tsx │ │ │ │ │ ├── page-settings-deployment-restrictions-feature.spec.tsx │ │ │ │ │ └── page-settings-deployment-restrictions-feature.tsx │ │ │ │ ├── page-settings-dockerfile-feature │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── page-settings-dockerfile-feature.spec.tsx.snap │ │ │ │ │ ├── page-settings-dockerfile-feature.spec.tsx │ │ │ │ │ └── page-settings-dockerfile-feature.tsx │ │ │ │ ├── page-settings-domains-feature │ │ │ │ │ ├── crud-modal-feature │ │ │ │ │ │ ├── crud-modal-feature.spec.tsx │ │ │ │ │ │ └── crud-modal-feature.tsx │ │ │ │ │ ├── page-settings-domains-feature.spec.tsx │ │ │ │ │ └── page-settings-domains-feature.tsx │ │ │ │ ├── page-settings-feature │ │ │ │ │ └── page-settings-feature.tsx │ │ │ │ ├── page-settings-general-feature │ │ │ │ │ ├── page-settings-general-feature.spec.tsx │ │ │ │ │ └── page-settings-general-feature.tsx │ │ │ │ ├── page-settings-healthchecks-feature │ │ │ │ │ ├── page-settings-healthchecks-feature.spec.tsx │ │ │ │ │ └── page-settings-healthchecks-feature.tsx │ │ │ │ ├── page-settings-networking-feature │ │ │ │ │ └── page-settings-networking-feature.tsx │ │ │ │ ├── page-settings-ports-feature │ │ │ │ │ ├── crud-modal-feature │ │ │ │ │ │ ├── crud-modal-feature.spec.tsx │ │ │ │ │ │ └── crud-modal-feature.tsx │ │ │ │ │ ├── page-settings-ports-feature.spec.tsx │ │ │ │ │ └── page-settings-ports-feature.tsx │ │ │ │ ├── page-settings-resources-feature │ │ │ │ │ ├── page-settings-resources-feature.spec.tsx │ │ │ │ │ └── page-settings-resources-feature.tsx │ │ │ │ ├── page-settings-storage-feature │ │ │ │ │ ├── page-settings-storage-feature.spec.tsx │ │ │ │ │ ├── page-settings-storage-feature.tsx │ │ │ │ │ └── storage-modal-feature │ │ │ │ │ │ ├── storage-modal-feature.spec.tsx │ │ │ │ │ │ └── storage-modal-feature.tsx │ │ │ │ ├── page-settings-terraform-arguments-feature │ │ │ │ │ ├── page-settings-terraform-arguments-feature.spec.tsx │ │ │ │ │ └── page-settings-terraform-arguments-feature.tsx │ │ │ │ ├── page-settings-terraform-configuration-feature │ │ │ │ │ └── page-settings-terraform-configuration-feature.tsx │ │ │ │ ├── page-settings-terraform-variables │ │ │ │ │ └── page-settings-terraform-variables.tsx │ │ │ │ ├── page-settings-values-override-arguments-feature │ │ │ │ │ └── page-settings-values-override-arguments-feature.tsx │ │ │ │ ├── page-settings-values-override-file-feature │ │ │ │ │ ├── page-settings-values-override-file-feature.spec.tsx │ │ │ │ │ └── page-settings-values-override-file-feature.tsx │ │ │ │ ├── page-variables-feature │ │ │ │ │ ├── page-variables-feature.spec.tsx │ │ │ │ │ └── page-variables-feature.tsx │ │ │ │ └── tabs-feature │ │ │ │ │ ├── tabs-feature.spec.tsx │ │ │ │ │ └── tabs-feature.tsx │ │ │ │ ├── page-application.spec.tsx │ │ │ │ ├── page-application.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── container │ │ │ │ ├── container.spec.tsx │ │ │ │ └── container.tsx │ │ │ │ ├── import-environment-variable-modal │ │ │ │ ├── import-environment-variable-modal.spec.tsx │ │ │ │ └── import-environment-variable-modal.tsx │ │ │ │ ├── page-deployments │ │ │ │ ├── page-deployments.spec.tsx │ │ │ │ └── page-deployments.tsx │ │ │ │ ├── page-general │ │ │ │ ├── page-general.spec.tsx │ │ │ │ └── page-general.tsx │ │ │ │ ├── page-settings-configure-job │ │ │ │ ├── page-settings-configure-job.spec.tsx │ │ │ │ └── page-settings-configure-job.tsx │ │ │ │ ├── page-settings-danger-zone │ │ │ │ ├── page-settings-danger-zone.spec.tsx │ │ │ │ └── page-settings-danger-zone.tsx │ │ │ │ ├── page-settings-deployment-restrictions │ │ │ │ └── crud-modal │ │ │ │ │ └── crud-modal.tsx │ │ │ │ ├── page-settings-domains │ │ │ │ ├── crud-modal │ │ │ │ │ ├── crud-modal.spec.tsx │ │ │ │ │ └── crud-modal.tsx │ │ │ │ ├── page-settings-domains.spec.tsx │ │ │ │ └── page-settings-domains.tsx │ │ │ │ ├── page-settings-general │ │ │ │ ├── page-settings-general.spec.tsx │ │ │ │ └── page-settings-general.tsx │ │ │ │ ├── page-settings-healthchecks │ │ │ │ ├── page-settings-healthchecks.spec.tsx │ │ │ │ └── page-settings-healthchecks.tsx │ │ │ │ ├── page-settings-ports │ │ │ │ ├── page-settings-ports.spec.tsx │ │ │ │ └── page-settings-ports.tsx │ │ │ │ ├── page-settings-resources │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── page-settings-resources.spec.tsx.snap │ │ │ │ ├── page-settings-resources.spec.tsx │ │ │ │ └── page-settings-resources.tsx │ │ │ │ ├── page-settings-storage │ │ │ │ ├── page-settings-storage.spec.tsx │ │ │ │ ├── page-settings-storage.tsx │ │ │ │ └── storage-modal │ │ │ │ │ ├── storage-modal.spec.tsx │ │ │ │ │ └── storage-modal.tsx │ │ │ │ └── page-settings │ │ │ │ ├── page-settings.spec.tsx │ │ │ │ └── page-settings.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── cluster │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── page-overview-feature │ │ │ │ │ ├── page-overview-feature.spec.tsx │ │ │ │ │ ├── page-overview-feature.tsx │ │ │ │ │ └── table-skeleton.tsx │ │ │ │ ├── page-settings-advanced-feature │ │ │ │ │ ├── init-form-values │ │ │ │ │ │ ├── init-form-values.spec.ts │ │ │ │ │ │ └── init-form-values.ts │ │ │ │ │ ├── page-settings-advanced-feature.spec.tsx │ │ │ │ │ └── page-settings-advanced-feature.tsx │ │ │ │ ├── page-settings-credentials-feature │ │ │ │ │ ├── page-settings-credentials-feature.spec.tsx │ │ │ │ │ └── page-settings-credentials-feature.tsx │ │ │ │ ├── page-settings-danger-zone-feature │ │ │ │ │ ├── page-settings-danger-zone-feature.spec.tsx │ │ │ │ │ └── page-settings-danger-zone-feature.tsx │ │ │ │ ├── page-settings-eks-feature │ │ │ │ │ └── page-settings-eks-feature.tsx │ │ │ │ ├── page-settings-feature │ │ │ │ │ ├── page-settings-feature.spec.tsx │ │ │ │ │ └── page-settings-feature.tsx │ │ │ │ ├── page-settings-general-feature │ │ │ │ │ ├── page-settings-general-feature.spec.tsx │ │ │ │ │ └── page-settings-general-feature.tsx │ │ │ │ ├── page-settings-image-registry-feature │ │ │ │ │ ├── page-settings-image-registry-feature.spec.tsx │ │ │ │ │ └── page-settings-image-registry-feature.tsx │ │ │ │ ├── page-settings-network-feature │ │ │ │ │ ├── crud-modal-feature │ │ │ │ │ │ ├── crud-modal-feature.spec.tsx │ │ │ │ │ │ └── crud-modal-feature.tsx │ │ │ │ │ ├── page-settings-network-feature.spec.tsx │ │ │ │ │ └── page-settings-network-feature.tsx │ │ │ │ └── page-settings-resources-feature │ │ │ │ │ ├── page-settings-resources-feature.spec.tsx │ │ │ │ │ └── page-settings-resources-feature.tsx │ │ │ │ ├── page-cluster.spec.tsx │ │ │ │ ├── page-cluster.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── container │ │ │ │ ├── container.spec.tsx │ │ │ │ └── container.tsx │ │ │ │ ├── need-redeploy-flag │ │ │ │ ├── need-redeploy-flag.spec.tsx │ │ │ │ └── need-redeploy-flag.tsx │ │ │ │ ├── page-settings-advanced │ │ │ │ ├── page-settings-advanced.spec.tsx │ │ │ │ └── page-settings-advanced.tsx │ │ │ │ ├── page-settings-credentials │ │ │ │ ├── page-settings-credentials.spec.tsx │ │ │ │ └── page-settings-credentials.tsx │ │ │ │ ├── page-settings-danger-zone │ │ │ │ ├── page-settings-danger-zone.spec.tsx │ │ │ │ └── page-settings-danger-zone.tsx │ │ │ │ ├── page-settings-general │ │ │ │ ├── page-settings-general.spec.tsx │ │ │ │ └── page-settings-general.tsx │ │ │ │ ├── page-settings-network │ │ │ │ ├── aws-existing-vpc │ │ │ │ │ ├── aws-existing-vpc.spec.tsx │ │ │ │ │ └── aws-existing-vpc.tsx │ │ │ │ ├── crud-modal-feature │ │ │ │ │ ├── crud-modal-feature.spec.tsx │ │ │ │ │ └── crud-modal-feature.tsx │ │ │ │ ├── crud-modal │ │ │ │ │ ├── crud-modal.spec.tsx │ │ │ │ │ └── crud-modal.tsx │ │ │ │ ├── gcp-existing-vpc │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── gcp-existing-vpc.spec.tsx.snap │ │ │ │ │ ├── gcp-existing-vpc.spec.tsx │ │ │ │ │ └── gcp-existing-vpc.tsx │ │ │ │ ├── page-settings-network.spec.tsx │ │ │ │ └── page-settings-network.tsx │ │ │ │ ├── page-settings-resources │ │ │ │ ├── page-settings-resources.spec.tsx │ │ │ │ └── page-settings-resources.tsx │ │ │ │ └── page-settings │ │ │ │ ├── page-settings.spec.tsx │ │ │ │ └── page-settings.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── clusters │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── page-clusters-create-feature │ │ │ │ │ ├── page-clusters-create-feature.spec.tsx │ │ │ │ │ ├── page-clusters-create-feature.tsx │ │ │ │ │ ├── step-eks-feature │ │ │ │ │ │ ├── step-eks-feature.spec.tsx │ │ │ │ │ │ └── step-eks-feature.tsx │ │ │ │ │ ├── step-features-feature │ │ │ │ │ │ ├── step-features-feature.spec.tsx │ │ │ │ │ │ └── step-features-feature.tsx │ │ │ │ │ ├── step-general-feature │ │ │ │ │ │ ├── step-general-feature.spec.tsx │ │ │ │ │ │ └── step-general-feature.tsx │ │ │ │ │ ├── step-kubeconfig-feature │ │ │ │ │ │ └── step-kubeconfig-feature.tsx │ │ │ │ │ ├── step-resources-feature │ │ │ │ │ │ ├── step-resources-feature.spec.tsx │ │ │ │ │ │ └── step-resources-feature.tsx │ │ │ │ │ └── step-summary-feature │ │ │ │ │ │ ├── step-summary-feature.spec.tsx │ │ │ │ │ │ └── step-summary-feature.tsx │ │ │ │ ├── page-clusters-general-feature │ │ │ │ │ ├── page-clusters-general-feature.spec.tsx │ │ │ │ │ └── page-clusters-general-feature.tsx │ │ │ │ └── page-new-feature │ │ │ │ │ ├── page-new-feature.spec.tsx │ │ │ │ │ └── page-new-feature.tsx │ │ │ │ ├── page-clusters.spec.tsx │ │ │ │ ├── page-clusters.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── container │ │ │ │ ├── container.spec.tsx │ │ │ │ └── container.tsx │ │ │ │ ├── page-clusters-create │ │ │ │ ├── step-features │ │ │ │ │ ├── aws-vpc-feature │ │ │ │ │ │ ├── aws-vpc-feature.spec.tsx │ │ │ │ │ │ └── aws-vpc-feature.tsx │ │ │ │ │ ├── button-popover-subnets │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── button-popover-subnets.spec.tsx.snap │ │ │ │ │ │ ├── button-popover-subnets.spec.tsx │ │ │ │ │ │ └── button-popover-subnets.tsx │ │ │ │ │ ├── gcp-vpc-feature │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── gcp-vpc-feature.spec.tsx.snap │ │ │ │ │ │ ├── gcp-vpc-feature.spec.tsx │ │ │ │ │ │ └── gcp-vpc-feature.tsx │ │ │ │ │ ├── step-features.spec.tsx │ │ │ │ │ └── step-features.tsx │ │ │ │ ├── step-general │ │ │ │ │ ├── step-general.spec.tsx │ │ │ │ │ └── step-general.tsx │ │ │ │ ├── step-kubeconfig │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── step-kubeconfig.spec.tsx.snap │ │ │ │ │ ├── step-kubeconfig.spec.tsx │ │ │ │ │ └── step-kubeconfig.tsx │ │ │ │ ├── step-resources │ │ │ │ │ ├── step-resources.spec.tsx │ │ │ │ │ └── step-resources.tsx │ │ │ │ └── step-summary │ │ │ │ │ ├── step-summary.spec.tsx │ │ │ │ │ └── step-summary.tsx │ │ │ │ └── page-clusters-general │ │ │ │ ├── page-clusters-general.spec.tsx │ │ │ │ └── page-clusters-general.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── database │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── page-deployments-feature │ │ │ │ │ ├── page-deployments-feature.spec.tsx │ │ │ │ │ └── page-deployments-feature.tsx │ │ │ │ ├── page-general-feature │ │ │ │ │ ├── page-general-feature.tsx │ │ │ │ │ └── page-general.spec.tsx │ │ │ │ ├── page-monitoring-feature │ │ │ │ │ ├── page-monitoring-feature.spec.tsx │ │ │ │ │ ├── page-monitoring-feature.tsx │ │ │ │ │ ├── placeholder-monitoring.spec.tsx │ │ │ │ │ └── placeholder-monitoring.tsx │ │ │ │ ├── page-settings-danger-zone-feature │ │ │ │ │ ├── page-settings-danger-zone-feature.spec.tsx │ │ │ │ │ └── page-settings-danger-zone-feature.tsx │ │ │ │ ├── page-settings-feature │ │ │ │ │ └── page-settings-feature.tsx │ │ │ │ ├── page-settings-general-feature │ │ │ │ │ ├── page-settings-general-feature.spec.tsx │ │ │ │ │ └── page-settings-general-feature.tsx │ │ │ │ └── page-settings-resources-feature │ │ │ │ │ ├── page-settings-resources-feature.spec.tsx │ │ │ │ │ └── page-settings-resources-feature.tsx │ │ │ │ ├── page-database.spec.tsx │ │ │ │ ├── page-database.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── container │ │ │ │ ├── container.spec.tsx │ │ │ │ └── container.tsx │ │ │ │ ├── page-deployments │ │ │ │ ├── page-deployments.spec.tsx │ │ │ │ └── page-deployments.tsx │ │ │ │ ├── page-general │ │ │ │ ├── page-general.spec.tsx │ │ │ │ └── page-general.tsx │ │ │ │ ├── page-settings-danger-zone │ │ │ │ ├── page-settings-danger-zone.spec.tsx │ │ │ │ └── page-settings-danger-zone.tsx │ │ │ │ ├── page-settings-general │ │ │ │ ├── page-settings-general.spec.tsx │ │ │ │ └── page-settings-general.tsx │ │ │ │ ├── page-settings-resources │ │ │ │ ├── page-settings-resources.spec.tsx │ │ │ │ └── page-settings-resources.tsx │ │ │ │ └── page-settings │ │ │ │ ├── page-settings.spec.tsx │ │ │ │ └── page-settings.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── environments │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── page-create-deployment-rule-feature │ │ │ │ │ ├── page-create-deployment-rule-feature.spec.tsx │ │ │ │ │ └── page-create-deployment-rule-feature.tsx │ │ │ │ ├── page-deployment-rules-feature │ │ │ │ │ ├── page-deployment-rules-feature.spec.tsx │ │ │ │ │ └── page-deployment-rules-feature.tsx │ │ │ │ ├── page-edit-deployment-rule-feature │ │ │ │ │ ├── page-edit-deployment-rule-feature.spec.tsx │ │ │ │ │ └── page-edit-deployment-rule-feature.tsx │ │ │ │ ├── page-general-feature │ │ │ │ │ ├── page-general-feature.spec.tsx │ │ │ │ │ └── page-general-feature.tsx │ │ │ │ └── page-variables-feature │ │ │ │ │ └── page-variables-feature.tsx │ │ │ │ ├── page-environments.spec.tsx │ │ │ │ ├── page-environments.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── container │ │ │ │ ├── container.spec.tsx │ │ │ │ └── container.tsx │ │ │ │ ├── deployment-rule-item │ │ │ │ ├── deployment-rule-item.spec.tsx │ │ │ │ └── deployment-rule-item.tsx │ │ │ │ ├── page-create-edit-deployment-rule │ │ │ │ ├── page-create-edit-deployment-rule.spec.tsx │ │ │ │ └── page-create-edit-deployment-rule.tsx │ │ │ │ ├── page-deployment-rules │ │ │ │ ├── page-deployment-rules.spec.tsx │ │ │ │ └── page-deployment-rules.tsx │ │ │ │ ├── page-general │ │ │ │ ├── page-general.spec.tsx │ │ │ │ └── page-general.tsx │ │ │ │ └── placeholder-no-rules │ │ │ │ ├── placeholder-no-rules.spec.tsx │ │ │ │ └── placeholder-no-rules.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── events │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── custom-filter-feature │ │ │ │ │ ├── custom-filter-feature.spec.tsx │ │ │ │ │ └── custom-filter-feature.tsx │ │ │ │ ├── page-general-feature │ │ │ │ │ ├── page-general-feature.spec.tsx │ │ │ │ │ └── page-general-feature.tsx │ │ │ │ └── row-event-feature │ │ │ │ │ ├── row-event-feature.spec.tsx │ │ │ │ │ └── row-event-feature.tsx │ │ │ │ ├── page-events.spec.tsx │ │ │ │ ├── page-events.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── copy-button │ │ │ │ ├── copy-button.spec.tsx │ │ │ │ └── copy-button.tsx │ │ │ │ ├── custom-filter │ │ │ │ ├── custom-filter.spec.tsx │ │ │ │ └── custom-filter.tsx │ │ │ │ ├── page-general │ │ │ │ ├── page-general.spec.tsx │ │ │ │ └── page-general.tsx │ │ │ │ └── row-event │ │ │ │ ├── row-event.spec.tsx │ │ │ │ └── row-event.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── layout │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── breadcrumb │ │ │ │ │ ├── breadcrumb.spec.tsx │ │ │ │ │ └── breadcrumb.tsx │ │ │ │ ├── dark-mode-enabler │ │ │ │ │ ├── dark-mode-enabler.spec.tsx │ │ │ │ │ └── dark-mode-enabler.tsx │ │ │ │ ├── layout │ │ │ │ │ ├── layout.spec.tsx │ │ │ │ │ └── layout.tsx │ │ │ │ ├── menu-account-feature │ │ │ │ │ ├── menu-account-feature.spec.tsx │ │ │ │ │ └── menu-account-feature.tsx │ │ │ │ ├── not-found-page │ │ │ │ │ ├── not-found-page.spec.tsx │ │ │ │ │ └── not-found-page.tsx │ │ │ │ └── spotlight-trigger │ │ │ │ │ └── spotlight-trigger.tsx │ │ │ │ ├── ui │ │ │ │ ├── breadcrumb-item │ │ │ │ │ ├── breadcrumb-item-value │ │ │ │ │ │ ├── breadcrumb-item-value.spec.tsx │ │ │ │ │ │ └── breadcrumb-item-value.tsx │ │ │ │ │ ├── breadcrumb-item.spec.tsx │ │ │ │ │ └── breadcrumb-item.tsx │ │ │ │ ├── breadcrumb │ │ │ │ │ ├── breadcrumb.spec.tsx │ │ │ │ │ └── breadcrumb.tsx │ │ │ │ ├── layout-page │ │ │ │ │ ├── layout-page.spec.tsx │ │ │ │ │ └── layout-page.tsx │ │ │ │ ├── menu-account │ │ │ │ │ ├── menu-account.spec.tsx │ │ │ │ │ └── menu-account.tsx │ │ │ │ ├── navigation │ │ │ │ │ ├── navigation.spec.tsx │ │ │ │ │ └── navigation.tsx │ │ │ │ └── top-bar │ │ │ │ │ ├── top-bar.spec.tsx │ │ │ │ │ └── top-bar.tsx │ │ │ │ └── utils │ │ │ │ └── utils.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── login │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── page-login │ │ │ │ │ ├── page-login.spec.tsx │ │ │ │ │ └── page-login.tsx │ │ │ │ ├── page-logout-feature │ │ │ │ │ ├── page-logout-feature.spec.tsx │ │ │ │ │ └── page-logout-feature.tsx │ │ │ │ └── page-redirect-login │ │ │ │ │ ├── page-redirect-login.spec.tsx │ │ │ │ │ └── page-redirect-login.tsx │ │ │ │ ├── hooks │ │ │ │ ├── auth0-error │ │ │ │ │ └── use-auth0-error.tsx │ │ │ │ └── use-redirect-if-logged │ │ │ │ │ ├── use-redirect-if-logged.spec.tsx │ │ │ │ │ ├── use-redirect-if-logged.tsx │ │ │ │ │ └── utils │ │ │ │ │ └── utils.tsx │ │ │ │ ├── page-login.spec.tsx │ │ │ │ ├── page-login.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── login-callback │ │ │ │ ├── login-callback.spec.tsx │ │ │ │ └── login-callback.tsx │ │ │ │ └── login │ │ │ │ ├── login.spec.tsx │ │ │ │ └── login.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── logs │ │ ├── environment │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── feature │ │ │ │ │ ├── deployment-logs-feature │ │ │ │ │ │ ├── deployment-logs-feature.spec.tsx │ │ │ │ │ │ └── deployment-logs-feature.tsx │ │ │ │ │ ├── environment-stages-feature │ │ │ │ │ │ ├── environment-stages-feature.spec.tsx │ │ │ │ │ │ └── environment-stages-feature.tsx │ │ │ │ │ ├── pod-logs-feature │ │ │ │ │ │ ├── pod-logs-feature.spec.tsx │ │ │ │ │ │ └── pod-logs-feature.tsx │ │ │ │ │ └── pre-check-logs-feature │ │ │ │ │ │ ├── pre-check-logs-feature.spec.tsx │ │ │ │ │ │ └── pre-check-logs-feature.tsx │ │ │ │ │ ├── page-environment-logs.spec.tsx │ │ │ │ │ └── page-environment-logs.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── infra │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ └── card-cluster-feature │ │ │ │ │ ├── card-cluster-feature.spec.tsx │ │ │ │ │ └── card-cluster-feature.tsx │ │ │ │ ├── page-infra-logs.spec.tsx │ │ │ │ ├── page-infra-logs.tsx │ │ │ │ └── ui │ │ │ │ └── row │ │ │ │ ├── __snapshots__ │ │ │ │ └── row.spec.tsx.snap │ │ │ │ ├── row.spec.tsx │ │ │ │ └── row.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── onboarding │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── container │ │ │ │ │ ├── container.spec.tsx │ │ │ │ │ └── container.tsx │ │ │ │ ├── form-user │ │ │ │ │ ├── form-user.spec.tsx │ │ │ │ │ └── form-user.tsx │ │ │ │ ├── onboarding-personalize │ │ │ │ │ ├── onboarding-personalize.spec.tsx │ │ │ │ │ └── onboarding-personalize.tsx │ │ │ │ ├── onboarding-plans │ │ │ │ │ ├── onboarding-plans.spec.tsx │ │ │ │ │ └── onboarding-plans.tsx │ │ │ │ ├── onboarding-project │ │ │ │ │ ├── onboarding-project.spec.tsx │ │ │ │ │ └── onboarding-project.tsx │ │ │ │ └── onboarding-thanks │ │ │ │ │ ├── onboarding-thanks.spec.tsx │ │ │ │ │ └── onboarding-thanks.tsx │ │ │ │ ├── page-onboarding.spec.tsx │ │ │ │ ├── page-onboarding.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── benefits-card │ │ │ │ ├── benefits-card.spec.tsx │ │ │ │ └── benefits-card.tsx │ │ │ │ ├── onboarding-right-content │ │ │ │ ├── onboarding-right-content.spec.tsx │ │ │ │ └── onboarding-right-content.tsx │ │ │ │ ├── plan-card │ │ │ │ ├── plan-card.spec.tsx │ │ │ │ └── plan-card.tsx │ │ │ │ ├── plan-list │ │ │ │ ├── plan-list.spec.tsx │ │ │ │ └── plan-list.tsx │ │ │ │ ├── step-personalize │ │ │ │ ├── step-personalize.spec.tsx │ │ │ │ └── step-personalize.tsx │ │ │ │ ├── step-plans │ │ │ │ ├── background.tsx │ │ │ │ ├── step-plans.spec.tsx │ │ │ │ └── step-plans.tsx │ │ │ │ ├── step-project │ │ │ │ ├── step-project.spec.tsx │ │ │ │ └── step-project.tsx │ │ │ │ └── step-thanks │ │ │ │ ├── step-thanks.spec.tsx │ │ │ │ └── step-thanks.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── overview │ │ ├── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ ├── overview.spec.tsx │ │ │ │ │ └── overview.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── ui │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── components │ │ │ │ └── overview │ │ │ │ ├── overview.spec.tsx │ │ │ │ └── overview.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── services │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── page-application-create-feature │ │ │ │ │ ├── page-application-create-feature.spec.tsx │ │ │ │ │ ├── page-application-create-feature.tsx │ │ │ │ │ ├── step-general-feature │ │ │ │ │ │ ├── step-general-feature.spec.tsx │ │ │ │ │ │ └── step-general-feature.tsx │ │ │ │ │ ├── step-healthchecks-feature │ │ │ │ │ │ ├── step-healthchecks-feature.spec.tsx │ │ │ │ │ │ └── step-healthchecks-feature.tsx │ │ │ │ │ ├── step-port-feature │ │ │ │ │ │ ├── crud-modal-feature │ │ │ │ │ │ │ ├── crud-modal-feature.spec.tsx │ │ │ │ │ │ │ └── crud-modal-feature.tsx │ │ │ │ │ │ ├── step-port-feature.spec.tsx │ │ │ │ │ │ └── step-port-feature.tsx │ │ │ │ │ ├── step-resources-feature │ │ │ │ │ │ ├── step-resources-feature.spec.tsx │ │ │ │ │ │ └── step-resources-feature.tsx │ │ │ │ │ ├── step-summary-feature │ │ │ │ │ │ ├── step-summary-feature.spec.tsx │ │ │ │ │ │ └── step-summary-feature.tsx │ │ │ │ │ └── step-variable-feature │ │ │ │ │ │ ├── step-variable-feature.spec.tsx │ │ │ │ │ │ └── step-variable-feature.tsx │ │ │ │ ├── page-database-create-feature │ │ │ │ │ ├── database-creation-flow.interface.ts │ │ │ │ │ ├── page-database-create-feature.spec.tsx │ │ │ │ │ ├── page-database-create-feature.tsx │ │ │ │ │ ├── step-general-feature │ │ │ │ │ │ ├── step-general-feature.spec.tsx │ │ │ │ │ │ └── step-general-feature.tsx │ │ │ │ │ ├── step-resources-feature │ │ │ │ │ │ ├── step-resources-feature.spec.tsx │ │ │ │ │ │ └── step-resources-feature.tsx │ │ │ │ │ └── step-summary-feature │ │ │ │ │ │ ├── step-summary-feature.spec.tsx │ │ │ │ │ │ └── step-summary-feature.tsx │ │ │ │ ├── page-deployments-feature │ │ │ │ │ ├── page-deployments-feature.spec.tsx │ │ │ │ │ └── page-deployments-feature.tsx │ │ │ │ ├── page-general-feature │ │ │ │ │ ├── page-general-feature.spec.tsx │ │ │ │ │ └── page-general-feature.tsx │ │ │ │ ├── page-helm-create-feature │ │ │ │ │ ├── page-helm-create-feature.spec.tsx │ │ │ │ │ ├── page-helm-create-feature.tsx │ │ │ │ │ ├── step-general-feature │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── step-general-feature.spec.tsx.snap │ │ │ │ │ │ ├── step-general-feature.spec.tsx │ │ │ │ │ │ └── step-general-feature.tsx │ │ │ │ │ ├── step-summary-feature │ │ │ │ │ │ ├── step-summary-feature.spec.tsx │ │ │ │ │ │ └── step-summary-feature.tsx │ │ │ │ │ ├── step-values-override-arguments-feature │ │ │ │ │ │ └── step-values-override-arguments-feature.tsx │ │ │ │ │ └── step-values-override-files-feature │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── step-values-override-files-feature.spec.tsx.snap │ │ │ │ │ │ ├── step-values-override-files-feature.spec.tsx │ │ │ │ │ │ └── step-values-override-files-feature.tsx │ │ │ │ ├── page-job-create-feature │ │ │ │ │ ├── page-job-create-feature.spec.tsx │ │ │ │ │ ├── page-job-create-feature.tsx │ │ │ │ │ ├── step-configure-feature │ │ │ │ │ │ ├── step-configure-feature.spec.tsx │ │ │ │ │ │ └── step-configure-feature.tsx │ │ │ │ │ ├── step-dockerfile-feature │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── step-dockerfile-feature.spec.tsx.snap │ │ │ │ │ │ ├── step-dockerfile-feature.spec.tsx │ │ │ │ │ │ └── step-dockerfile-feature.tsx │ │ │ │ │ ├── step-general-feature │ │ │ │ │ │ ├── step-general-feature.spec.tsx │ │ │ │ │ │ └── step-general-feature.tsx │ │ │ │ │ ├── step-introduction-feature │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── build.svg │ │ │ │ │ │ │ ├── output.svg │ │ │ │ │ │ │ ├── run.svg │ │ │ │ │ │ │ └── trigger.svg │ │ │ │ │ │ ├── step-introduction-feature.spec.tsx │ │ │ │ │ │ ├── step-introduction-feature.tsx │ │ │ │ │ │ └── util-localstorage-step.ts │ │ │ │ │ ├── step-resources-feature │ │ │ │ │ │ ├── step-resources-feature.spec.tsx │ │ │ │ │ │ └── step-resources-feature.tsx │ │ │ │ │ ├── step-summary-feature │ │ │ │ │ │ ├── step-summary-feature.spec.tsx │ │ │ │ │ │ └── step-summary-feature.tsx │ │ │ │ │ ├── step-variable-feature │ │ │ │ │ │ ├── step-variable-feature.spec.tsx │ │ │ │ │ │ └── step-variable-feature.tsx │ │ │ │ │ └── template-form-sync.tsx │ │ │ │ ├── page-new-feature │ │ │ │ │ ├── page-new-feature.spec.tsx │ │ │ │ │ ├── page-new-feature.tsx │ │ │ │ │ └── service-templates.ts │ │ │ │ ├── page-settings-danger-zone-feature │ │ │ │ │ ├── page-settings-danger-zone-feature.spec.tsx │ │ │ │ │ └── page-settings-danger-zone-feature.tsx │ │ │ │ ├── page-settings-deployment-pipeline-feature │ │ │ │ │ ├── page-settings-deployment-pipeline-feature.spec.tsx │ │ │ │ │ ├── page-settings-deployment-pipeline-feature.tsx │ │ │ │ │ ├── stage-modal-feature │ │ │ │ │ │ ├── stage-modal-feature.spec.tsx │ │ │ │ │ │ └── stage-modal-feature.tsx │ │ │ │ │ ├── stage-order-modal-feature │ │ │ │ │ │ ├── stage-order-modal-feature.spec.tsx │ │ │ │ │ │ └── stage-order-modal-feature.tsx │ │ │ │ │ └── utils │ │ │ │ │ │ ├── utils.spec.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ ├── page-settings-deployment-rules-feature │ │ │ │ │ ├── page-settings-deployment-rules-feature.spec.tsx │ │ │ │ │ └── page-settings-deployment-rules-feature.tsx │ │ │ │ ├── page-settings-feature │ │ │ │ │ └── page-settings-feature.tsx │ │ │ │ ├── page-settings-general-feature │ │ │ │ │ ├── page-settings-general-feature.spec.tsx │ │ │ │ │ └── page-settings-general-feature.tsx │ │ │ │ ├── page-settings-preview-environments-feature │ │ │ │ │ ├── page-settings-preview-environments-feature.spec.tsx │ │ │ │ │ └── page-settings-preview-environments-feature.tsx │ │ │ │ ├── page-terraform-create-feature │ │ │ │ │ ├── page-terraform-create-feature.spec.tsx │ │ │ │ │ ├── page-terraform-create-feature.tsx │ │ │ │ │ ├── step-configuration-feature │ │ │ │ │ │ ├── step-configuration-feature.spec.tsx │ │ │ │ │ │ └── step-configuration-feature.tsx │ │ │ │ │ ├── step-general-feature │ │ │ │ │ │ ├── step-general-feature.spec.tsx │ │ │ │ │ │ └── step-general-feature.tsx │ │ │ │ │ ├── step-input-variables-feature │ │ │ │ │ │ └── step-input-variables-feature.tsx │ │ │ │ │ └── step-summary-feature │ │ │ │ │ │ └── step-summary-feature.tsx │ │ │ │ └── page-variables-feature │ │ │ │ │ └── page-variables-feature.tsx │ │ │ │ ├── page-services.spec.tsx │ │ │ │ ├── page-services.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── container │ │ │ │ ├── container.spec.tsx │ │ │ │ └── container.tsx │ │ │ │ ├── page-application-create │ │ │ │ ├── step-general │ │ │ │ │ ├── step-general.spec.tsx │ │ │ │ │ └── step-general.tsx │ │ │ │ ├── step-healthchecks │ │ │ │ │ ├── step-healthchecks.spec.tsx │ │ │ │ │ └── step-healthchecks.tsx │ │ │ │ ├── step-resources │ │ │ │ │ ├── step-resources.spec.tsx │ │ │ │ │ └── step-resources.tsx │ │ │ │ └── step-summary │ │ │ │ │ ├── step-summary.spec.tsx │ │ │ │ │ └── step-summary.tsx │ │ │ │ ├── page-database-create │ │ │ │ ├── step-general │ │ │ │ │ ├── step-general.spec.tsx │ │ │ │ │ └── step-general.tsx │ │ │ │ ├── step-resources │ │ │ │ │ ├── step-resources.spec.tsx │ │ │ │ │ └── step-resources.tsx │ │ │ │ └── step-summary │ │ │ │ │ ├── step-summary.spec.tsx │ │ │ │ │ └── step-summary.tsx │ │ │ │ ├── page-general │ │ │ │ ├── page-general.spec.tsx │ │ │ │ └── page-general.tsx │ │ │ │ ├── page-job-create │ │ │ │ ├── step-configure │ │ │ │ │ ├── step-configure.spec.tsx │ │ │ │ │ └── step-configure.tsx │ │ │ │ ├── step-general │ │ │ │ │ ├── step-general.spec.tsx │ │ │ │ │ └── step-general.tsx │ │ │ │ ├── step-resources │ │ │ │ │ ├── step-resources.spec.tsx │ │ │ │ │ └── step-resources.tsx │ │ │ │ └── step-summary │ │ │ │ │ ├── step-summary.spec.tsx │ │ │ │ │ └── step-summary.tsx │ │ │ │ ├── page-settings-danger-zone │ │ │ │ ├── page-settings-danger-zone.spec.tsx │ │ │ │ └── page-settings-danger-zone.tsx │ │ │ │ ├── page-settings-deployment-pipeline │ │ │ │ ├── page-settings-deployment-pipeline.spec.tsx │ │ │ │ ├── page-settings-deployment-pipeline.tsx │ │ │ │ ├── stage-modal │ │ │ │ │ ├── stage-modal.spec.tsx │ │ │ │ │ └── stage-modal.tsx │ │ │ │ └── stage-order-modal │ │ │ │ │ ├── stage-order-modal.spec.tsx │ │ │ │ │ └── stage-order-modal.tsx │ │ │ │ ├── page-settings-deployment-rules │ │ │ │ ├── page-settings-deployment-rules.spec.tsx │ │ │ │ └── page-settings-deployment-rules.tsx │ │ │ │ ├── page-settings-general │ │ │ │ ├── page-settings-general.spec.tsx │ │ │ │ └── page-settings-general.tsx │ │ │ │ ├── page-settings-preview-environments │ │ │ │ ├── page-settings-preview-environments.spec.tsx │ │ │ │ └── page-settings-preview-environments.tsx │ │ │ │ └── page-settings │ │ │ │ ├── page-settings.spec.tsx │ │ │ │ └── page-settings.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── settings │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── feature │ │ │ │ ├── page-organization-api-feature │ │ │ │ │ ├── crud-modal-feature │ │ │ │ │ │ ├── crud-modal-feature.spec.tsx │ │ │ │ │ │ └── crud-modal-feature.tsx │ │ │ │ │ ├── page-organization-api-feature.spec.tsx │ │ │ │ │ └── page-organization-api-feature.tsx │ │ │ │ ├── page-organization-billing-feature │ │ │ │ │ ├── billing-details-feature │ │ │ │ │ │ ├── billing-details-feature.spec.tsx │ │ │ │ │ │ └── billing-details-feature.tsx │ │ │ │ │ ├── page-organization-billing-feature.spec.tsx │ │ │ │ │ └── page-organization-billing-feature.tsx │ │ │ │ ├── page-organization-billing-summary-feature │ │ │ │ │ ├── invoices-list-feature │ │ │ │ │ │ ├── invoices-list-feature.spec.tsx │ │ │ │ │ │ └── invoices-list-feature.tsx │ │ │ │ │ ├── page-organization-billing-summary-feature.spec.tsx │ │ │ │ │ ├── page-organization-billing-summary-feature.tsx │ │ │ │ │ ├── plan-selection-modal-feature │ │ │ │ │ │ └── plan-selection-modal-feature.tsx │ │ │ │ │ ├── promo-code-modal-feature │ │ │ │ │ │ ├── promo-code-modal-feature.spec.tsx │ │ │ │ │ │ └── promo-code-modal-feature.tsx │ │ │ │ │ └── show-usage-modal-feature │ │ │ │ │ │ ├── show-usage-modal-feature.spec.tsx │ │ │ │ │ │ └── show-usage-modal-feature.tsx │ │ │ │ ├── page-organization-container-registries-feature │ │ │ │ │ ├── page-organization-container-registries-feature.spec.tsx │ │ │ │ │ └── page-organization-container-registries-feature.tsx │ │ │ │ ├── page-organization-credentials-feature │ │ │ │ │ ├── page-organization-credentials-feature.spec.tsx │ │ │ │ │ └── page-organization-credentials-feature.tsx │ │ │ │ ├── page-organization-danger-zone-feature │ │ │ │ │ ├── page-organization-danger-zone-feature.spec.tsx │ │ │ │ │ └── page-organization-danger-zone-feature.tsx │ │ │ │ ├── page-organization-general-feature │ │ │ │ │ ├── page-organization-general-feature.spec.tsx │ │ │ │ │ └── page-organization-general-feature.tsx │ │ │ │ ├── page-organization-github-repository-access-feature │ │ │ │ │ ├── page-organization-github-repository-access-feature.spec.tsx │ │ │ │ │ └── page-organization-github-repository-access-feature.tsx │ │ │ │ ├── page-organization-helm-repositories-feature │ │ │ │ │ ├── page-organization-helm-repositories-feature.spec.tsx │ │ │ │ │ └── page-organization-helm-repositories-feature.tsx │ │ │ │ ├── page-organization-labels-annotations-feature │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── page-organization-labels-annotations-feature.spec.tsx.snap │ │ │ │ │ ├── page-organization-labels-annotations-feature.spec.tsx │ │ │ │ │ └── page-organization-labels-annotations-feature.tsx │ │ │ │ ├── page-organization-members-feature │ │ │ │ │ ├── create-modal-feature │ │ │ │ │ │ ├── create-modal-feature.spec.tsx │ │ │ │ │ │ └── create-modal-feature.tsx │ │ │ │ │ ├── page-organization-members-feature.spec.tsx │ │ │ │ │ └── page-organization-members-feature.tsx │ │ │ │ ├── page-organization-roles-edit-feature │ │ │ │ │ ├── page-organization-roles-edit-feature.spec.tsx │ │ │ │ │ └── page-organization-roles-edit-feature.tsx │ │ │ │ ├── page-organization-roles-feature │ │ │ │ │ ├── create-modal-feature │ │ │ │ │ │ ├── create-modal-feature.spec.tsx │ │ │ │ │ │ └── create-modal-feature.tsx │ │ │ │ │ ├── page-organization-roles-feature.spec.tsx │ │ │ │ │ └── page-organization-roles-feature.tsx │ │ │ │ ├── page-organization-webhooks-feature │ │ │ │ │ ├── page-organization-webhooks-feature.spec.tsx │ │ │ │ │ ├── page-organization-webhooks-feature.tsx │ │ │ │ │ └── webhook-crud-modal-feature │ │ │ │ │ │ ├── webhook-crud-modal-feature.spec.tsx │ │ │ │ │ │ └── webhook-crud-modal-feature.tsx │ │ │ │ ├── page-project-danger-zone-feature │ │ │ │ │ ├── page-project-danger-zone-feature.spec.tsx │ │ │ │ │ └── page-project-danger-zone-feature.tsx │ │ │ │ └── page-project-general-feature │ │ │ │ │ ├── page-project-general-feature.spec.tsx │ │ │ │ │ └── page-project-general-feature.tsx │ │ │ │ ├── page-alerting.tsx │ │ │ │ ├── page-settings.spec.tsx │ │ │ │ ├── page-settings.tsx │ │ │ │ ├── router │ │ │ │ └── router.tsx │ │ │ │ └── ui │ │ │ │ ├── container │ │ │ │ ├── container.spec.tsx │ │ │ │ └── container.tsx │ │ │ │ ├── page-organization-api │ │ │ │ ├── crud-modal │ │ │ │ │ ├── crud-modal.spec.tsx │ │ │ │ │ └── crud-modal.tsx │ │ │ │ ├── page-organization-api.spec.tsx │ │ │ │ ├── page-organization-api.tsx │ │ │ │ └── value-modal │ │ │ │ │ ├── value-modal.spec.tsx │ │ │ │ │ └── value-modal.tsx │ │ │ │ ├── page-organization-billing-summary │ │ │ │ ├── invoices-list │ │ │ │ │ ├── invoices-list.spec.tsx │ │ │ │ │ ├── invoices-list.tsx │ │ │ │ │ └── table-row-invoice │ │ │ │ │ │ ├── table-row-invoice.spec.tsx │ │ │ │ │ │ └── table-row-invoice.tsx │ │ │ │ ├── page-organization-billing-summary.spec.tsx │ │ │ │ ├── page-organization-billing-summary.tsx │ │ │ │ ├── plan-selection-modal │ │ │ │ │ └── plan-selection-modal.tsx │ │ │ │ ├── promo-code-modal │ │ │ │ │ ├── promo-code-modal.spec.tsx │ │ │ │ │ └── promo-code-modal.tsx │ │ │ │ ├── show-usage-modal │ │ │ │ │ ├── show-usage-modal.spec.tsx │ │ │ │ │ └── show-usage-modal.tsx │ │ │ │ └── show-usage-value-modal │ │ │ │ │ ├── show-usage-value-modal.spec.tsx │ │ │ │ │ └── show-usage-value-modal.tsx │ │ │ │ ├── page-organization-billing │ │ │ │ ├── billing-details │ │ │ │ │ ├── billing-details.spec.tsx │ │ │ │ │ └── billing-details.tsx │ │ │ │ ├── page-organization-billing.spec.tsx │ │ │ │ └── page-organization-billing.tsx │ │ │ │ ├── page-organization-danger-zone │ │ │ │ ├── page-organization-danger-zone.spec.tsx │ │ │ │ └── page-organization-danger-zone.tsx │ │ │ │ ├── page-organization-general │ │ │ │ ├── page-organization-general.spec.tsx │ │ │ │ └── page-organization-general.tsx │ │ │ │ ├── page-organization-github-repository-access │ │ │ │ ├── disconnection-confirm-modal │ │ │ │ │ ├── disconnection-confirm-modal.spec.tsx │ │ │ │ │ └── disconnection-confirm-modal.tsx │ │ │ │ ├── page-organization-github-repository-access.spec.tsx │ │ │ │ ├── page-organization-github-repository-access.tsx │ │ │ │ └── section-github-app │ │ │ │ │ ├── section-github-app.spec.tsx │ │ │ │ │ └── section-github-app.tsx │ │ │ │ ├── page-organization-helm-repositories │ │ │ │ ├── page-organization-helm-repositories.spec.tsx │ │ │ │ └── page-organization-helm-repositories.tsx │ │ │ │ ├── page-organization-members │ │ │ │ ├── create-modal │ │ │ │ │ ├── create-modal.spec.tsx │ │ │ │ │ └── create-modal.tsx │ │ │ │ ├── page-organization-members.spec.tsx │ │ │ │ ├── page-organization-members.tsx │ │ │ │ └── row-member │ │ │ │ │ ├── row-member.spec.tsx │ │ │ │ │ └── row-member.tsx │ │ │ │ ├── page-organization-roles-edit │ │ │ │ ├── page-organization-roles-edit.spec.tsx │ │ │ │ ├── page-organization-roles-edit.tsx │ │ │ │ ├── row-cluster │ │ │ │ │ ├── row-cluster.spec.tsx │ │ │ │ │ └── row-cluster.tsx │ │ │ │ ├── row-project │ │ │ │ │ ├── row-project.spec.tsx │ │ │ │ │ └── row-project.tsx │ │ │ │ ├── table-clusters │ │ │ │ │ ├── table-clusters.spec.tsx │ │ │ │ │ └── table-clusters.tsx │ │ │ │ └── table │ │ │ │ │ ├── table.spec.tsx │ │ │ │ │ └── table.tsx │ │ │ │ ├── page-organization-roles │ │ │ │ ├── create-modal │ │ │ │ │ ├── create-modal.spec.tsx │ │ │ │ │ └── create-modal.tsx │ │ │ │ ├── page-organization-roles.spec.tsx │ │ │ │ └── page-organization-roles.tsx │ │ │ │ ├── page-organization-webhooks │ │ │ │ ├── page-organization-webhooks.spec.tsx │ │ │ │ ├── page-organization-webhooks.tsx │ │ │ │ └── webhook-crud-modal │ │ │ │ │ ├── webhook-crud-modal.spec.tsx │ │ │ │ │ └── webhook-crud-modal.tsx │ │ │ │ ├── page-project-danger-zone │ │ │ │ ├── page-project-danger-zone.spec.tsx │ │ │ │ └── page-project-danger-zone.tsx │ │ │ │ └── page-project-general │ │ │ │ ├── page-project-general.spec.tsx │ │ │ │ └── page-project-general.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── user │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── feature │ │ │ └── page-user-general-feature │ │ │ │ ├── page-user-general-feature.spec.tsx │ │ │ │ └── page-user-general-feature.tsx │ │ │ ├── page-user.spec.tsx │ │ │ ├── page-user.tsx │ │ │ ├── router │ │ │ └── router.tsx │ │ │ └── ui │ │ │ ├── container │ │ │ ├── container.spec.tsx │ │ │ └── container.tsx │ │ │ └── page-user-general │ │ │ ├── page-user-general.spec.tsx │ │ │ └── page-user-general.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── shared │ ├── assistant │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── assistant-context │ │ │ │ └── assistant-context.ts │ │ │ │ ├── assistant-icon-switcher │ │ │ │ └── assistant-icon-switcher.tsx │ │ │ │ ├── assistant-icon │ │ │ │ └── assistant-icon.ts │ │ │ │ ├── assistant-panel │ │ │ │ └── assistant-panel.tsx │ │ │ │ ├── assistant-trigger │ │ │ │ └── assistant-trigger.tsx │ │ │ │ ├── dot-status │ │ │ │ └── dot-status.tsx │ │ │ │ ├── hit │ │ │ │ └── hit.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-contextual-doc-links │ │ │ │ │ └── use-contextual-doc-links.ts │ │ │ │ └── use-qovery-status │ │ │ │ │ └── use-qovery-status.ts │ │ │ │ ├── instant-search-provider │ │ │ │ └── instant-search-provider.tsx │ │ │ │ ├── need-help │ │ │ │ └── need-help.tsx │ │ │ │ └── snippet │ │ │ │ └── snippet.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── auth │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── enum │ │ │ │ └── auth.enum.ts │ │ │ │ ├── use-auth │ │ │ │ ├── use-auth.spec.ts │ │ │ │ └── use-auth.tsx │ │ │ │ └── use-invite-member │ │ │ │ ├── use-invite-member.spec.tsx │ │ │ │ └── use-invite-member.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── console-shared │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── add-credit-card-modal │ │ │ │ ├── feature │ │ │ │ │ ├── add-credit-card-modal-feature.spec.tsx │ │ │ │ │ └── add-credit-card-modal-feature.tsx │ │ │ │ └── ui │ │ │ │ │ ├── add-credit-card-modal.spec.tsx │ │ │ │ │ └── add-credit-card-modal.tsx │ │ │ │ ├── application-settings │ │ │ │ ├── ui │ │ │ │ │ ├── application-settings-healthchecks │ │ │ │ │ │ ├── application-settings-healthchecks.spec.tsx │ │ │ │ │ │ └── application-settings-healthchecks.tsx │ │ │ │ │ └── application-settings-resources │ │ │ │ │ │ ├── application-settings-resources.spec.tsx │ │ │ │ │ │ └── application-settings-resources.tsx │ │ │ │ └── utils │ │ │ │ │ ├── probe-formatted.spec.ts │ │ │ │ │ └── probe-formatted.ts │ │ │ │ ├── cluster-settings │ │ │ │ ├── feature │ │ │ │ │ ├── cluster-credentials-settings-feature │ │ │ │ │ │ ├── cluster-credentials-settings-feature.spec.tsx │ │ │ │ │ │ └── cluster-credentials-settings-feature.tsx │ │ │ │ │ └── cluster-resources-settings-feature │ │ │ │ │ │ ├── cluster-resources-settings-feature.spec.tsx │ │ │ │ │ │ ├── cluster-resources-settings-feature.tsx │ │ │ │ │ │ └── utils │ │ │ │ │ │ ├── list-instance-type-formatter.spec.ts │ │ │ │ │ │ └── list-instance-type-formatter.ts │ │ │ │ └── ui │ │ │ │ │ ├── card-cluster-feature │ │ │ │ │ ├── card-cluster-feature.spec.tsx │ │ │ │ │ └── card-cluster-feature.tsx │ │ │ │ │ ├── cluster-credentials-settings │ │ │ │ │ ├── cluster-credentials-settings.spec.tsx │ │ │ │ │ └── cluster-credentials-settings.tsx │ │ │ │ │ ├── cluster-general-settings │ │ │ │ │ ├── cluster-general-settings.spec.tsx │ │ │ │ │ └── cluster-general-settings.tsx │ │ │ │ │ └── cluster-resources-settings │ │ │ │ │ ├── button-popover-subnets │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── button-popover-subnets.spec.tsx.snap │ │ │ │ │ ├── button-popover-subnets.spec.tsx │ │ │ │ │ └── button-popover-subnets.tsx │ │ │ │ │ ├── cluster-resources-settings.spec.tsx │ │ │ │ │ ├── cluster-resources-settings.tsx │ │ │ │ │ └── karpenter-image.svg │ │ │ │ ├── credit-card-form │ │ │ │ └── ui │ │ │ │ │ ├── credit-card-form.spec.tsx │ │ │ │ │ └── credit-card-form.tsx │ │ │ │ ├── database-settings-resources │ │ │ │ ├── feature │ │ │ │ │ └── settings-resources-instance-types-feature │ │ │ │ │ │ ├── setting-resources-instance-types-feature.spec.tsx │ │ │ │ │ │ └── setting-resources-instance-types-feature.tsx │ │ │ │ └── ui │ │ │ │ │ ├── database-settings-resources │ │ │ │ │ ├── database-settings-resources.spec.tsx │ │ │ │ │ └── database-settings-resources.tsx │ │ │ │ │ └── settings-resources-instance-types │ │ │ │ │ ├── setting-resources-instance-types.spec.tsx │ │ │ │ │ └── setting-resources-instance-types.tsx │ │ │ │ ├── entrypoint-cmd-inputs │ │ │ │ └── ui │ │ │ │ │ ├── entrypoint-cmd-inputs.spec.tsx │ │ │ │ │ └── entrypoint-cmd-inputs.tsx │ │ │ │ ├── flow-create-port │ │ │ │ ├── ui │ │ │ │ │ ├── crud-modal │ │ │ │ │ │ ├── crud-modal.spec.tsx │ │ │ │ │ │ └── crud-modal.tsx │ │ │ │ │ └── flow-create-port │ │ │ │ │ │ ├── flow-create-port.spec.tsx │ │ │ │ │ │ └── flow-create-port.tsx │ │ │ │ └── utils │ │ │ │ │ ├── port-healthcheck.spec.ts │ │ │ │ │ └── port-healthcheck.ts │ │ │ │ ├── force-run-modal │ │ │ │ ├── feature │ │ │ │ │ ├── force-run-modal-feature.spec.tsx │ │ │ │ │ └── force-run-modal-feature.tsx │ │ │ │ └── ui │ │ │ │ │ ├── force-run-modal.spec.tsx │ │ │ │ │ └── force-run-modal.tsx │ │ │ │ ├── general-container-settings │ │ │ │ └── ui │ │ │ │ │ ├── general-container-settings.spec.tsx │ │ │ │ │ ├── general-container-settings.tsx │ │ │ │ │ ├── image-name.tsx │ │ │ │ │ └── image-tag.tsx │ │ │ │ ├── git-repository-settings │ │ │ │ ├── feature │ │ │ │ │ └── edit-git-repository-settings-feature │ │ │ │ │ │ ├── edit-git-repository-settings-feature.spec.tsx │ │ │ │ │ │ └── edit-git-repository-settings-feature.tsx │ │ │ │ └── ui │ │ │ │ │ ├── confirmation-git-modal │ │ │ │ │ ├── confirmation-git-modal.spec.tsx │ │ │ │ │ └── confirmation-git-modal.tsx │ │ │ │ │ └── git-repository-settings │ │ │ │ │ ├── git-repository-settings.spec.tsx │ │ │ │ │ └── git-repository-settings.tsx │ │ │ │ ├── github-application-callback │ │ │ │ └── github-application-callback-feature │ │ │ │ │ ├── github-application-callback-feature.spec.tsx │ │ │ │ │ └── github-application-callback-feature.tsx │ │ │ │ ├── job-configure-settings │ │ │ │ └── ui │ │ │ │ │ ├── job-configure-settings.spec.tsx │ │ │ │ │ └── job-configure-settings.tsx │ │ │ │ ├── job-general-settings │ │ │ │ └── ui │ │ │ │ │ ├── job-general-settings.spec.tsx │ │ │ │ │ └── job-general-settings.tsx │ │ │ │ ├── layout-logs │ │ │ │ ├── buttons-actions-logs │ │ │ │ │ ├── buttons-actions-logs.spec.tsx │ │ │ │ │ └── buttons-actions-logs.tsx │ │ │ │ ├── card-cluster │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── card-cluster.spec.tsx.snap │ │ │ │ │ ├── card-cluster.spec.tsx │ │ │ │ │ └── card-cluster.tsx │ │ │ │ ├── layout-logs.spec.tsx │ │ │ │ ├── layout-logs.tsx │ │ │ │ ├── placeholder-logs │ │ │ │ │ ├── loader-placeholder │ │ │ │ │ │ └── loader-placeholder.tsx │ │ │ │ │ ├── placeholder-logs.spec.tsx │ │ │ │ │ └── placeholder-logs.tsx │ │ │ │ └── tabs-cluster-logs │ │ │ │ │ ├── tabs-cluster-logs.spec.tsx │ │ │ │ │ └── tabs-cluster-logs.tsx │ │ │ │ ├── member-invitation │ │ │ │ ├── accept-invitation │ │ │ │ │ ├── feature │ │ │ │ │ │ ├── accept-invitation-feature.spec.tsx │ │ │ │ │ │ └── accept-invitation-feature.tsx │ │ │ │ │ └── ui │ │ │ │ │ │ └── accept-invitation │ │ │ │ │ │ ├── accept-invitation.spec.tsx │ │ │ │ │ │ └── accept-invitation.tsx │ │ │ │ └── invite-details │ │ │ │ │ ├── feature │ │ │ │ │ ├── invite-details-feature.spec.tsx │ │ │ │ │ └── invite-details-feature.tsx │ │ │ │ │ └── ui │ │ │ │ │ ├── invite-details.spec.tsx │ │ │ │ │ └── invite-details.tsx │ │ │ │ └── settings-heading │ │ │ │ └── settings-heading.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── devops-copilot │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-devops-copilot-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── devops-copilot-button │ │ │ │ └── devops-copilot-button.tsx │ │ │ │ ├── devops-copilot-context │ │ │ │ └── devops-copilot-context.ts │ │ │ │ ├── devops-copilot-panel │ │ │ │ ├── devops-copilot-history.tsx │ │ │ │ ├── devops-copilot-panel.tsx │ │ │ │ ├── submit-message.ts │ │ │ │ └── submit-vote.ts │ │ │ │ ├── devops-copilot-trigger │ │ │ │ └── devops-copilot-trigger.tsx │ │ │ │ ├── devops-render-markdown │ │ │ │ └── devops-render-markdown.tsx │ │ │ │ ├── dot-status │ │ │ │ └── dot-status.tsx │ │ │ │ ├── hooks │ │ │ │ ├── use-config │ │ │ │ │ └── use-config.tsx │ │ │ │ ├── use-contextual-doc-links │ │ │ │ │ └── use-contextual-doc-links.ts │ │ │ │ ├── use-qovery-context │ │ │ │ │ └── use-qovery-context.ts │ │ │ │ ├── use-qovery-status │ │ │ │ │ └── use-qovery-status.ts │ │ │ │ ├── use-thread-state │ │ │ │ │ └── use-thread-state.ts │ │ │ │ ├── use-thread │ │ │ │ │ └── use-thread.ts │ │ │ │ └── use-threads │ │ │ │ │ └── use-threads.tsx │ │ │ │ ├── mermaid-chart │ │ │ │ └── mermaid-chart.tsx │ │ │ │ └── utils │ │ │ │ ├── date-utils │ │ │ │ └── date-utils.ts │ │ │ │ └── icon-utils │ │ │ │ └── icon-utils.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── enums │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── colors.enum.ts │ │ │ │ ├── constants │ │ │ │ ├── countries.ts │ │ │ │ ├── currency-dictionary.ts │ │ │ │ ├── environment-mode-values.ts │ │ │ │ ├── timezone-values.ts │ │ │ │ └── weekdays-values.ts │ │ │ │ ├── external-service.enum.ts │ │ │ │ ├── icon.enum.ts │ │ │ │ ├── job.type.ts │ │ │ │ ├── logs-type.enum.ts │ │ │ │ ├── member-role.enum.ts │ │ │ │ ├── memory-size.enum.ts │ │ │ │ ├── probe-type-healthchecks.enum.ts │ │ │ │ ├── running-state.enum.ts │ │ │ │ ├── service-type.enum.ts │ │ │ │ └── utils │ │ │ │ └── get-service-type.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── factories │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── application-deployment-factory.mock.ts │ │ │ │ ├── application-factory.mock.ts │ │ │ │ ├── auth-provider.mock.ts │ │ │ │ ├── cluster-factory.mock.ts │ │ │ │ ├── cluster-log-factory.mock.ts │ │ │ │ ├── container-factory.mock.ts │ │ │ │ ├── credit-card-factory.mock.ts │ │ │ │ ├── database-deployments-factory.mock.ts │ │ │ │ ├── database-factory.mock.ts │ │ │ │ ├── database-master-credentials-factory.mock.ts │ │ │ │ ├── database-status.mock.ts │ │ │ │ ├── deployment-log-factory.mock.ts │ │ │ │ ├── deployment-rules-factory.mock.ts │ │ │ │ ├── deployment-stages-factory.mock.ts │ │ │ │ ├── environment-factory.mock.ts │ │ │ │ ├── environment-variable-factory.mock.ts │ │ │ │ ├── events.mock.ts │ │ │ │ ├── helm-factory.mock.ts │ │ │ │ ├── job-factory.mock.ts │ │ │ │ ├── organizations-factory.mock.ts │ │ │ │ ├── organizations-handler.mock.ts │ │ │ │ ├── projects-factory.mock.ts │ │ │ │ ├── terraform-factory.mock.ts │ │ │ │ ├── user-signup-factory.mock.ts │ │ │ │ └── webhook-factory.mock.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── iam │ │ ├── data-access │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ │ ├── index.ts │ │ │ │ └── lib │ │ │ │ │ └── domains-user-data-access.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── use-user-account │ │ │ │ └── use-user-account.ts │ │ │ │ ├── use-user-edit-account │ │ │ │ └── use-user-edit-account.ts │ │ │ │ └── use-user-role │ │ │ │ └── use-user-role.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── interfaces │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── common │ │ │ │ ├── detect-new-row.interface.ts │ │ │ │ ├── flow-port-data.interface.ts │ │ │ │ ├── flow-variable-data.interface.ts │ │ │ │ └── value.interface.ts │ │ │ │ ├── domain │ │ │ │ ├── application-creation-flow.interface.ts │ │ │ │ ├── cluster-creation-flow.interface.ts │ │ │ │ ├── job-creation-flow.interface.ts │ │ │ │ └── service-running-status.interface.ts │ │ │ │ └── types │ │ │ │ ├── deployment-service.type.ts │ │ │ │ ├── environment-variable-secret-or-public.type.ts │ │ │ │ └── loading-status.type.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── router │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── protected-route │ │ │ │ ├── protected-route.spec.tsx │ │ │ │ └── protected-route.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── routes │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── router.ts │ │ │ │ └── sub-router │ │ │ │ ├── alerting.router.ts │ │ │ │ ├── application.router.ts │ │ │ │ ├── audit-logs.router.ts │ │ │ │ ├── cluster.router.ts │ │ │ │ ├── clusters.router.ts │ │ │ │ ├── database.router.ts │ │ │ │ ├── environments.router.ts │ │ │ │ ├── helm.router.ts │ │ │ │ ├── job.router.ts │ │ │ │ ├── login.router.ts │ │ │ │ ├── logs.router.ts │ │ │ │ ├── onboarding.router.ts │ │ │ │ ├── services.router.ts │ │ │ │ ├── settings.router.ts │ │ │ │ ├── terraform.router.ts │ │ │ │ └── user.router.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── spotlight │ │ └── feature │ │ │ ├── .babelrc │ │ │ ├── .eslintrc.json │ │ │ ├── README.md │ │ │ ├── jest.config.ts │ │ │ ├── project.json │ │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── hooks │ │ │ │ ├── use-quick-actions │ │ │ │ │ └── use-quick-actions.ts │ │ │ │ ├── use-service-type │ │ │ │ │ └── use-service-type.ts │ │ │ │ └── use-services-search │ │ │ │ │ └── use-services-search.ts │ │ │ │ ├── spotlight │ │ │ │ ├── spotlight.spec.tsx │ │ │ │ └── spotlight.tsx │ │ │ │ └── sub-command │ │ │ │ ├── sub-command.spec.tsx │ │ │ │ └── sub-command.tsx │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.lib.json │ │ │ └── tsconfig.spec.json │ ├── toast │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── toast.tsx │ │ │ │ └── utils │ │ │ │ ├── toast-error.spec.tsx │ │ │ │ └── toast-error.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── ui │ │ ├── .babelrc │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .storybook │ │ │ ├── main.ts │ │ │ └── preview.tsx │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── postcss.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── assets │ │ │ │ ├── devicon │ │ │ │ │ ├── airbyte.svg │ │ │ │ │ ├── clickhouse.svg │ │ │ │ │ ├── cloudformation.svg │ │ │ │ │ ├── crossplane.svg │ │ │ │ │ ├── datadog.svg │ │ │ │ │ ├── ec2.svg │ │ │ │ │ ├── kubecost.svg │ │ │ │ │ ├── lambda.svg │ │ │ │ │ ├── s3.svg │ │ │ │ │ ├── scaleway.svg │ │ │ │ │ ├── temporal.svg │ │ │ │ │ └── windmill.svg │ │ │ │ ├── fonts │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── hack │ │ │ │ │ │ ├── hack-regular.woff │ │ │ │ │ │ └── hack-regular.woff2 │ │ │ │ │ └── roboto │ │ │ │ │ │ ├── roboto-bold.woff │ │ │ │ │ │ ├── roboto-bold.woff2 │ │ │ │ │ │ ├── roboto-medium.woff │ │ │ │ │ │ ├── roboto-medium.woff2 │ │ │ │ │ │ ├── roboto-regular.woff │ │ │ │ │ │ └── roboto-regular.woff2 │ │ │ │ ├── images │ │ │ │ │ ├── event-placeholder-dark.svg │ │ │ │ │ ├── event-placeholder-light.svg │ │ │ │ │ └── paperclip_emoji.png │ │ │ │ ├── logos │ │ │ │ │ ├── logo-black.svg │ │ │ │ │ ├── logo-icon.svg │ │ │ │ │ └── logo-white.svg │ │ │ │ └── services │ │ │ │ │ ├── application.svg │ │ │ │ │ ├── cron-job.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── helm.svg │ │ │ │ │ └── lifecycle-job.svg │ │ │ │ ├── components │ │ │ │ ├── accordion │ │ │ │ │ ├── accordion.stories.tsx │ │ │ │ │ └── accordion.tsx │ │ │ │ ├── action-toolbar │ │ │ │ │ ├── action-toolbar.stories.tsx │ │ │ │ │ └── action-toolbar.tsx │ │ │ │ ├── action-trigger-status-chip │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── action-trigger-status-chip.spec.tsx.snap │ │ │ │ │ ├── action-trigger-status-chip.spec.tsx │ │ │ │ │ ├── action-trigger-status-chip.stories.tsx │ │ │ │ │ └── action-trigger-status-chip.tsx │ │ │ │ ├── animated-gradient-text │ │ │ │ │ ├── animated-gradient-text.spec.tsx │ │ │ │ │ ├── animated-gradient-text.stories.tsx │ │ │ │ │ └── animated-gradient-text.tsx │ │ │ │ ├── avatar │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── avatar.spec.tsx.snap │ │ │ │ │ ├── avatar.spec.tsx │ │ │ │ │ ├── avatar.stories.tsx │ │ │ │ │ └── avatar.tsx │ │ │ │ ├── badge-deployment-order │ │ │ │ │ ├── badge-deployment-order.spec.tsx │ │ │ │ │ └── badge-deployment-order.tsx │ │ │ │ ├── badge │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── badge.spec.tsx.snap │ │ │ │ │ ├── badge.spec.tsx │ │ │ │ │ ├── badge.stories.tsx │ │ │ │ │ └── badge.tsx │ │ │ │ ├── banner │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── banner.spec.tsx.snap │ │ │ │ │ ├── banner.spec.tsx │ │ │ │ │ ├── banner.stories.tsx │ │ │ │ │ └── banner.tsx │ │ │ │ ├── block-content-delete │ │ │ │ │ ├── block-content-delete.spec.tsx │ │ │ │ │ ├── block-content-delete.stories.tsx │ │ │ │ │ └── block-content-delete.tsx │ │ │ │ ├── block-content │ │ │ │ │ ├── block-content.spec.tsx │ │ │ │ │ ├── block-content.stories.tsx │ │ │ │ │ └── block-content.tsx │ │ │ │ ├── board │ │ │ │ │ ├── board.stories.tsx │ │ │ │ │ └── board.tsx │ │ │ │ ├── button-primitive │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── button-primitive.spec.tsx.snap │ │ │ │ │ ├── button-primitive.spec.tsx │ │ │ │ │ └── button-primitive.tsx │ │ │ │ ├── button │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── button.spec.tsx.snap │ │ │ │ │ ├── button.spec.tsx │ │ │ │ │ ├── button.stories.tsx │ │ │ │ │ └── button.tsx │ │ │ │ ├── buttons │ │ │ │ │ └── button-icon-action │ │ │ │ │ │ ├── button-icon-action-element │ │ │ │ │ │ ├── button-icon-action-element.spec.tsx │ │ │ │ │ │ └── button-icon-action-element.tsx │ │ │ │ │ │ ├── button-icon-action.spec.tsx │ │ │ │ │ │ ├── button-icon-action.stories.tsx │ │ │ │ │ │ └── button-icon-action.tsx │ │ │ │ ├── callout │ │ │ │ │ ├── callout.stories.tsx │ │ │ │ │ └── callout.tsx │ │ │ │ ├── chart │ │ │ │ │ ├── chart-loader.tsx │ │ │ │ │ ├── chart-skeleton.tsx │ │ │ │ │ ├── chart-utils.spec.tsx │ │ │ │ │ ├── chart-utils.ts │ │ │ │ │ ├── chart.spec.tsx │ │ │ │ │ ├── chart.stories.tsx │ │ │ │ │ ├── chart.tsx │ │ │ │ │ ├── use-zoomable-chart.spec.ts │ │ │ │ │ └── use-zoomable-chart.ts │ │ │ │ ├── checkbox │ │ │ │ │ ├── checkbox.stories.tsx │ │ │ │ │ └── checkbox.tsx │ │ │ │ ├── code-editor │ │ │ │ │ ├── code-editor.spec.tsx │ │ │ │ │ ├── code-editor.stories.tsx │ │ │ │ │ └── code-editor.tsx │ │ │ │ ├── command-menu │ │ │ │ │ ├── command-menu.stories.tsx │ │ │ │ │ └── command-menu.tsx │ │ │ │ ├── copy-button │ │ │ │ │ ├── copy-button.spec.tsx │ │ │ │ │ └── copy-button.tsx │ │ │ │ ├── copy-to-clipboard-button-icon │ │ │ │ │ ├── copy-to-clipboard-button-icon.spec.tsx │ │ │ │ │ ├── copy-to-clipboard-button-icon.stories.tsx │ │ │ │ │ └── copy-to-clipboard-button-icon.tsx │ │ │ │ ├── copy-to-clipboard │ │ │ │ │ ├── copy-to-clipboard.stories.tsx │ │ │ │ │ └── copy-to-clipboard.tsx │ │ │ │ ├── date-picker │ │ │ │ │ ├── date-picker-header │ │ │ │ │ │ ├── date-picker-header.spec.tsx │ │ │ │ │ │ └── date-picker-header.tsx │ │ │ │ │ ├── date-picker.spec.tsx │ │ │ │ │ ├── date-picker.stories.tsx │ │ │ │ │ └── date-picker.tsx │ │ │ │ ├── description-list │ │ │ │ │ ├── description-list.stories.tsx │ │ │ │ │ └── description-list.tsx │ │ │ │ ├── dropdown-menu │ │ │ │ │ ├── dropdown-menu.stories.tsx │ │ │ │ │ └── dropdown-menu.tsx │ │ │ │ ├── dropzone │ │ │ │ │ ├── dropzone.spec.tsx │ │ │ │ │ ├── dropzone.stories.tsx │ │ │ │ │ └── dropzone.tsx │ │ │ │ ├── empty-state │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── empty-state.spec.tsx.snap │ │ │ │ │ ├── empty-state.spec.tsx │ │ │ │ │ ├── empty-state.stories.tsx │ │ │ │ │ └── empty-state.tsx │ │ │ │ ├── enable-box │ │ │ │ │ ├── enable-box.spec.tsx │ │ │ │ │ ├── enable-box.stories.tsx │ │ │ │ │ └── enable-box.tsx │ │ │ │ ├── error-boundary │ │ │ │ │ └── error-boundary.tsx │ │ │ │ ├── funnel-flow-body │ │ │ │ │ ├── funnel-flow-body.spec.tsx │ │ │ │ │ ├── funnel-flow-body.stories.tsx │ │ │ │ │ └── funnel-flow-body.tsx │ │ │ │ ├── funnel-flow │ │ │ │ │ ├── funnel-flow.spec.tsx │ │ │ │ │ ├── funnel-flow.stories.tsx │ │ │ │ │ └── funnel-flow.tsx │ │ │ │ ├── header │ │ │ │ │ ├── header.spec.tsx │ │ │ │ │ ├── header.stories.tsx │ │ │ │ │ └── header.tsx │ │ │ │ ├── heading │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── heading.spec.tsx.snap │ │ │ │ │ ├── heading.spec.tsx │ │ │ │ │ ├── heading.tsx │ │ │ │ │ └── level-context.ts │ │ │ │ ├── icon-fa │ │ │ │ │ ├── icon-fa.spec.tsx │ │ │ │ │ └── icon-fa.tsx │ │ │ │ ├── icon-flag │ │ │ │ │ ├── icon-flag.spec.tsx │ │ │ │ │ ├── icon-flag.stories.tsx │ │ │ │ │ └── icon-flag.tsx │ │ │ │ ├── icon │ │ │ │ │ ├── icon-awesome.enum.tsx │ │ │ │ │ ├── icon.spec.tsx │ │ │ │ │ ├── icon.stories.tsx │ │ │ │ │ ├── icon.tsx │ │ │ │ │ ├── icons-git │ │ │ │ │ │ ├── bitbucket.tsx │ │ │ │ │ │ ├── github.tsx │ │ │ │ │ │ └── gitlab.tsx │ │ │ │ │ ├── icons-status │ │ │ │ │ │ ├── build-error.tsx │ │ │ │ │ │ ├── building.tsx │ │ │ │ │ │ ├── canceled.tsx │ │ │ │ │ │ ├── canceling.tsx │ │ │ │ │ │ ├── deleted.tsx │ │ │ │ │ │ ├── deleting.tsx │ │ │ │ │ │ ├── deployed.tsx │ │ │ │ │ │ ├── deploying.tsx │ │ │ │ │ │ ├── error.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── queued.tsx │ │ │ │ │ │ ├── restarted.tsx │ │ │ │ │ │ ├── restarting.tsx │ │ │ │ │ │ ├── skip.tsx │ │ │ │ │ │ ├── spinner.tsx │ │ │ │ │ │ ├── stopped.tsx │ │ │ │ │ │ ├── stopping.tsx │ │ │ │ │ │ ├── unknown.tsx │ │ │ │ │ │ └── warning.tsx │ │ │ │ │ └── icons │ │ │ │ │ │ ├── application.tsx │ │ │ │ │ │ ├── aws-gray.tsx │ │ │ │ │ │ ├── aws.tsx │ │ │ │ │ │ ├── azure.tsx │ │ │ │ │ │ ├── check-circle.tsx │ │ │ │ │ │ ├── children-arrow.tsx │ │ │ │ │ │ ├── civo.tsx │ │ │ │ │ │ ├── cloudformationIcon.tsx │ │ │ │ │ │ ├── container.tsx │ │ │ │ │ │ ├── cron-job-stroke-icon.tsx │ │ │ │ │ │ ├── cron-job.tsx │ │ │ │ │ │ ├── database.tsx │ │ │ │ │ │ ├── do.tsx │ │ │ │ │ │ ├── docker.tsx │ │ │ │ │ │ ├── doppler.tsx │ │ │ │ │ │ ├── eks.tsx │ │ │ │ │ │ ├── environment.tsx │ │ │ │ │ │ ├── gcp-artifact-registry.tsx │ │ │ │ │ │ ├── gcp-gray.tsx │ │ │ │ │ │ ├── gcp.tsx │ │ │ │ │ │ ├── generic-registry.tsx │ │ │ │ │ │ ├── git.tsx │ │ │ │ │ │ ├── google.tsx │ │ │ │ │ │ ├── helm-official.tsx │ │ │ │ │ │ ├── helm-service.tsx │ │ │ │ │ │ ├── hetzner.tsx │ │ │ │ │ │ ├── ibm-cloud.tsx │ │ │ │ │ │ ├── information.tsx │ │ │ │ │ │ ├── kubernetes.tsx │ │ │ │ │ │ ├── lifecycle-job-stroke-icon.tsx │ │ │ │ │ │ ├── lifecycle-job.tsx │ │ │ │ │ │ ├── microsoft.tsx │ │ │ │ │ │ ├── mongodb.tsx │ │ │ │ │ │ ├── mysql.tsx │ │ │ │ │ │ ├── opentofu.tsx │ │ │ │ │ │ ├── oracle-cloud.tsx │ │ │ │ │ │ ├── ovh-cloud.tsx │ │ │ │ │ │ ├── postgresql.tsx │ │ │ │ │ │ ├── qovery.tsx │ │ │ │ │ │ ├── redis.tsx │ │ │ │ │ │ ├── scaleway-gray.tsx │ │ │ │ │ │ ├── scaleway.tsx │ │ │ │ │ │ ├── services.tsx │ │ │ │ │ │ ├── slack.tsx │ │ │ │ │ │ └── terraform.tsx │ │ │ │ ├── indicator │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── indicator.spec.tsx.snap │ │ │ │ │ ├── indicator.spec.tsx │ │ │ │ │ ├── indicator.stories.tsx │ │ │ │ │ └── indicator.tsx │ │ │ │ ├── inputs │ │ │ │ │ ├── input-checkbox │ │ │ │ │ │ ├── input-checkbox.spec.tsx │ │ │ │ │ │ ├── input-checkbox.stories.tsx │ │ │ │ │ │ └── input-checkbox.tsx │ │ │ │ │ ├── input-credit-card │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── credit-card-images.tsx │ │ │ │ │ │ ├── input-credit-card.spec.tsx │ │ │ │ │ │ ├── input-credit-card.stories.tsx │ │ │ │ │ │ └── input-credit-card.tsx │ │ │ │ │ ├── input-file │ │ │ │ │ │ ├── input-file.spec.tsx │ │ │ │ │ │ ├── input-file.stories.tsx │ │ │ │ │ │ └── input-file.tsx │ │ │ │ │ ├── input-filter │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── input-filter.spec.tsx.snap │ │ │ │ │ │ ├── input-filter.spec.tsx │ │ │ │ │ │ ├── input-filter.stories.tsx │ │ │ │ │ │ └── input-filter.tsx │ │ │ │ │ ├── input-radio-box │ │ │ │ │ │ ├── input-radio-box.spec.tsx │ │ │ │ │ │ ├── input-radio-box.stories.tsx │ │ │ │ │ │ └── input-radio-box.tsx │ │ │ │ │ ├── input-radio │ │ │ │ │ │ ├── input-radio.spec.tsx │ │ │ │ │ │ ├── input-radio.stories.tsx │ │ │ │ │ │ └── input-radio.tsx │ │ │ │ │ ├── input-search │ │ │ │ │ │ ├── input-search.spec.tsx │ │ │ │ │ │ └── input-search.tsx │ │ │ │ │ ├── input-select-small │ │ │ │ │ │ ├── input-select-small.spec.tsx │ │ │ │ │ │ ├── input-select-small.stories.tsx │ │ │ │ │ │ └── input-select-small.tsx │ │ │ │ │ ├── input-select │ │ │ │ │ │ ├── input-select.spec.tsx │ │ │ │ │ │ ├── input-select.stories.tsx │ │ │ │ │ │ └── input-select.tsx │ │ │ │ │ ├── input-size-unit │ │ │ │ │ │ ├── input-size-unit.spec.tsx │ │ │ │ │ │ ├── input-size-unit.stories.tsx │ │ │ │ │ │ ├── input-size-unit.tsx │ │ │ │ │ │ └── utils.tsx │ │ │ │ │ ├── input-tags │ │ │ │ │ │ ├── input-tags.spec.tsx │ │ │ │ │ │ ├── input-tags.stories.tsx │ │ │ │ │ │ └── input-tags.tsx │ │ │ │ │ ├── input-text-area │ │ │ │ │ │ ├── input-text-area.spec.tsx │ │ │ │ │ │ ├── input-text-area.stories.tsx │ │ │ │ │ │ └── input-text-area.tsx │ │ │ │ │ ├── input-text-small │ │ │ │ │ │ ├── input-text-small.spec.tsx │ │ │ │ │ │ ├── input-text-small.stories.tsx │ │ │ │ │ │ └── input-text-small.tsx │ │ │ │ │ ├── input-text │ │ │ │ │ │ ├── input-text.spec.tsx │ │ │ │ │ │ ├── input-text.stories.tsx │ │ │ │ │ │ └── input-text.tsx │ │ │ │ │ └── input-toggle │ │ │ │ │ │ ├── input-toggle.spec.tsx │ │ │ │ │ │ ├── input-toggle.stories.tsx │ │ │ │ │ │ └── input-toggle.tsx │ │ │ │ ├── kbd │ │ │ │ │ └── kbd.tsx │ │ │ │ ├── legacy-avatar │ │ │ │ │ ├── legacy-avatar.spec.tsx │ │ │ │ │ ├── legacy-avatar.stories.tsx │ │ │ │ │ └── legacy-avatar.tsx │ │ │ │ ├── link │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── link.spec.tsx.snap │ │ │ │ │ ├── link.spec.tsx │ │ │ │ │ ├── link.stories.tsx │ │ │ │ │ └── link.tsx │ │ │ │ ├── loader-dots │ │ │ │ │ ├── loader-dots.spec.tsx │ │ │ │ │ ├── loader-dots.stories.tsx │ │ │ │ │ └── loader-dots.tsx │ │ │ │ ├── loader-spinner │ │ │ │ │ ├── loader-spinner.spec.tsx │ │ │ │ │ ├── loader-spinner.stories.tsx │ │ │ │ │ └── loader-spinner.tsx │ │ │ │ ├── loading-screen │ │ │ │ │ ├── loading-screen.spec.tsx │ │ │ │ │ └── loading-screen.tsx │ │ │ │ ├── menu │ │ │ │ │ ├── menu-group │ │ │ │ │ │ └── menu-group.tsx │ │ │ │ │ ├── menu-item │ │ │ │ │ │ └── menu-item.tsx │ │ │ │ │ ├── menu.spec.tsx │ │ │ │ │ ├── menu.stories.tsx │ │ │ │ │ └── menu.tsx │ │ │ │ ├── modal-alert │ │ │ │ │ ├── modal-alert.spec.tsx │ │ │ │ │ ├── modal-alert.tsx │ │ │ │ │ └── use-modal-alert │ │ │ │ │ │ ├── use-modal-alert.spec.tsx │ │ │ │ │ │ └── use-modal-alert.tsx │ │ │ │ ├── modal │ │ │ │ │ ├── modal-root.spec.tsx │ │ │ │ │ ├── modal-root.tsx │ │ │ │ │ ├── modal.spec.tsx │ │ │ │ │ ├── modal.stories.tsx │ │ │ │ │ ├── modal.tsx │ │ │ │ │ └── use-modal │ │ │ │ │ │ ├── use-modal.spec.tsx │ │ │ │ │ │ └── use-modal.tsx │ │ │ │ ├── modals │ │ │ │ │ ├── modal-confirmation │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ │ └── modal-confirmation.spec.tsx.snap │ │ │ │ │ │ ├── modal-confirmation.spec.tsx │ │ │ │ │ │ ├── modal-confirmation.stories.tsx │ │ │ │ │ │ ├── modal-confirmation.tsx │ │ │ │ │ │ └── use-modal-confirmation │ │ │ │ │ │ │ ├── use-modal-confirmation.spec.tsx │ │ │ │ │ │ │ └── use-modal-confirmation.tsx │ │ │ │ │ ├── modal-crud │ │ │ │ │ │ ├── modal-crud.spec.tsx │ │ │ │ │ │ └── modal-crud.tsx │ │ │ │ │ └── modal-multi-confirmation │ │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── modal-multi-confirmation.spec.tsx.snap │ │ │ │ │ │ ├── modal-multi-confirmation.spec.tsx │ │ │ │ │ │ ├── modal-multi-confirmation.stories.tsx │ │ │ │ │ │ ├── modal-multi-confirmation.tsx │ │ │ │ │ │ └── use-modal-multi-confirmation │ │ │ │ │ │ ├── use-modal-multi-confirmation.spec.tsx │ │ │ │ │ │ └── use-modal-multi-confirmation.tsx │ │ │ │ ├── multiple-selector │ │ │ │ │ ├── multiple-selector.stories.tsx │ │ │ │ │ └── multiple-selector.tsx │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.spec.tsx │ │ │ │ │ └── navbar.tsx │ │ │ │ ├── navigation-left │ │ │ │ │ ├── navigation-left-sub-link │ │ │ │ │ │ ├── navigation-left-sub-link.spec.tsx │ │ │ │ │ │ └── navigation-left-sub-link.tsx │ │ │ │ │ ├── navigation-left.spec.tsx │ │ │ │ │ ├── navigation-left.stories.tsx │ │ │ │ │ └── navigation-left.tsx │ │ │ │ ├── pagination │ │ │ │ │ ├── pagination.spec.tsx │ │ │ │ │ ├── pagination.stories.tsx │ │ │ │ │ └── pagination.tsx │ │ │ │ ├── password-show-hide │ │ │ │ │ ├── password-show-hide.spec.tsx │ │ │ │ │ ├── password-show-hide.stories.tsx │ │ │ │ │ └── password-show-hide.tsx │ │ │ │ ├── popover │ │ │ │ │ ├── popover.stories.tsx │ │ │ │ │ └── popover.tsx │ │ │ │ ├── progress-bar │ │ │ │ │ ├── progress-bar.stories.tsx │ │ │ │ │ └── progress-bar.tsx │ │ │ │ ├── radio-group │ │ │ │ │ ├── radio-group.stories.tsx │ │ │ │ │ └── radio-group.tsx │ │ │ │ ├── scroll-into-view │ │ │ │ │ ├── scroll-into-view.spec.tsx │ │ │ │ │ └── scroll-into-view.tsx │ │ │ │ ├── scroll-shadow-wrapper │ │ │ │ │ ├── scroll-shadow-wrapper.spec.tsx │ │ │ │ │ └── scroll-shadow-wrapper.tsx │ │ │ │ ├── section │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── section.spec.tsx.snap │ │ │ │ │ ├── section.spec.tsx │ │ │ │ │ ├── section.stories.tsx │ │ │ │ │ └── section.tsx │ │ │ │ ├── segmented-control │ │ │ │ │ ├── segmented-control.stories.tsx │ │ │ │ │ └── segmented-control.tsx │ │ │ │ ├── skeleton │ │ │ │ │ ├── skeleton.spec.tsx │ │ │ │ │ ├── skeleton.stories.tsx │ │ │ │ │ └── skeleton.tsx │ │ │ │ ├── slider │ │ │ │ │ ├── slider.spec.tsx │ │ │ │ │ ├── slider.stories.tsx │ │ │ │ │ └── slider.tsx │ │ │ │ ├── stage-status-chip │ │ │ │ │ ├── stage-status-chip.spec.tsx │ │ │ │ │ ├── stage-status-chip.stories.tsx │ │ │ │ │ └── stage-status-chip.tsx │ │ │ │ ├── status-chip │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ │ └── status-chip.spec.tsx.snap │ │ │ │ │ ├── status-chip.spec.tsx │ │ │ │ │ ├── status-chip.stories.tsx │ │ │ │ │ └── status-chip.tsx │ │ │ │ ├── status-label │ │ │ │ │ ├── status-label.spec.tsx │ │ │ │ │ ├── status-label.stories.tsx │ │ │ │ │ └── status-label.tsx │ │ │ │ ├── sticky-action-form-toaster │ │ │ │ │ ├── sticky-action-form-toaster.spec.tsx │ │ │ │ │ ├── sticky-action-form-toaster.stories.tsx │ │ │ │ │ └── sticky-action-form-toaster.tsx │ │ │ │ ├── table-edition │ │ │ │ │ ├── table-edition.spec.tsx │ │ │ │ │ └── table-edition.tsx │ │ │ │ ├── table-filter-search │ │ │ │ │ └── table-filter-search.tsx │ │ │ │ ├── table-filter │ │ │ │ │ └── table-filter.tsx │ │ │ │ ├── table-primitives │ │ │ │ │ ├── table-primitives.stories.tsx │ │ │ │ │ └── table-primitives.tsx │ │ │ │ ├── table │ │ │ │ │ ├── table-head-filter │ │ │ │ │ │ ├── table-head-filter.spec.tsx │ │ │ │ │ │ └── table-head-filter.tsx │ │ │ │ │ ├── table-head-sort │ │ │ │ │ │ ├── table-head-sort.spec.tsx │ │ │ │ │ │ └── table-head-sort.tsx │ │ │ │ │ ├── table-row-deployment │ │ │ │ │ │ ├── table-row-deployment.spec.tsx │ │ │ │ │ │ └── table-row-deployment.tsx │ │ │ │ │ ├── table-row-filter │ │ │ │ │ │ ├── table-row-filter.spec.tsx │ │ │ │ │ │ └── table-row-filter.tsx │ │ │ │ │ ├── table-row │ │ │ │ │ │ ├── table-row.spec.tsx │ │ │ │ │ │ └── table-row.tsx │ │ │ │ │ ├── table.spec.tsx │ │ │ │ │ ├── table.stories.tsx │ │ │ │ │ └── table.tsx │ │ │ │ ├── tabs-primitives │ │ │ │ │ ├── tabs-primitives.stories.tsx │ │ │ │ │ └── tabs-primitives.tsx │ │ │ │ ├── tabs │ │ │ │ │ ├── tabs.spec.tsx │ │ │ │ │ ├── tabs.stories.tsx │ │ │ │ │ └── tabs.tsx │ │ │ │ ├── tag-commit │ │ │ │ │ ├── tag-commit.spec.tsx │ │ │ │ │ ├── tag-commit.stories.tsx │ │ │ │ │ └── tag-commit.tsx │ │ │ │ ├── tag │ │ │ │ │ ├── tag.spec.tsx │ │ │ │ │ ├── tag.stories.tsx │ │ │ │ │ └── tag.tsx │ │ │ │ ├── toast │ │ │ │ │ ├── toast.spec.tsx │ │ │ │ │ ├── toast.stories.tsx │ │ │ │ │ └── toast.tsx │ │ │ │ ├── tooltip │ │ │ │ │ ├── tooltip.spec.tsx │ │ │ │ │ ├── tooltip.stories.tsx │ │ │ │ │ └── tooltip.tsx │ │ │ │ ├── tree-view │ │ │ │ │ ├── tree-view.stories.tsx │ │ │ │ │ └── tree-view.tsx │ │ │ │ ├── truncate │ │ │ │ │ ├── truncate.spec.tsx │ │ │ │ │ ├── truncate.stories.tsx │ │ │ │ │ └── truncate.tsx │ │ │ │ ├── warning-screen-mobile │ │ │ │ │ ├── warning-screen-mobile.spec.tsx │ │ │ │ │ ├── warning-screen-mobile.stories.tsx │ │ │ │ │ └── warning-screen-mobile.tsx │ │ │ │ └── xterm │ │ │ │ │ └── xterm.stories.tsx │ │ │ │ ├── styles │ │ │ │ ├── animations.stories.tsx │ │ │ │ ├── base │ │ │ │ │ ├── fonts.scss │ │ │ │ │ ├── icons.scss │ │ │ │ │ └── variable.scss │ │ │ │ ├── components │ │ │ │ │ ├── date-picker.scss │ │ │ │ │ ├── input.scss │ │ │ │ │ ├── menu.scss │ │ │ │ │ ├── modal.scss │ │ │ │ │ └── select.scss │ │ │ │ ├── main.scss │ │ │ │ └── object │ │ │ │ │ ├── animation.scss │ │ │ │ │ ├── code-ansi.scss │ │ │ │ │ ├── link.scss │ │ │ │ │ └── typography.scss │ │ │ │ └── utils │ │ │ │ ├── ansi.tsx │ │ │ │ ├── toast-error.spec.tsx │ │ │ │ ├── toast-error.tsx │ │ │ │ └── toast.tsx │ │ ├── tailwind.config.js │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.spec.json │ │ └── tsconfig.storybook.json │ ├── util-const │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── shared-util-const.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-dates │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── util-dates.spec.ts │ │ │ │ └── util-dates.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-git │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── util-git.spec.ts │ │ │ │ └── util-git.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-hooks │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── use-format-hotkeys │ │ │ │ ├── use-format-hotkeys.spec.ts │ │ │ │ └── use-format-hotkeys.ts │ │ │ │ ├── use-pod-color │ │ │ │ ├── use-pod-color.spec.tsx │ │ │ │ └── use-pod-color.tsx │ │ │ │ └── use-support-chat │ │ │ │ └── use-support-chat.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-js │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── build-git-repo-url.spec.ts │ │ │ │ ├── build-git-repo-url.ts │ │ │ │ ├── compute-available-environment-variable-scope.spec.ts │ │ │ │ ├── compute-available-environment-variable-scope.ts │ │ │ │ ├── container-registry-kind-to-icon.ts │ │ │ │ ├── convert-memory-size.spec.ts │ │ │ │ ├── convert-memory-size.ts │ │ │ │ ├── cost-to-human.spec.ts │ │ │ │ ├── cost-to-human.ts │ │ │ │ ├── custom-tw-merge.ts │ │ │ │ ├── environment-variable-file.spec.ts │ │ │ │ ├── environment-variable-file.ts │ │ │ │ ├── find-moved-indices.spec.ts │ │ │ │ ├── find-moved-indices.ts │ │ │ │ ├── format-cron-expression.ts │ │ │ │ ├── format-metric.ts │ │ │ │ ├── format-plan-display.ts │ │ │ │ ├── generate-doc-url.ts │ │ │ │ ├── merge-deployment-services.spec.ts │ │ │ │ ├── merge-deployment-services.ts │ │ │ │ ├── object-flattener.spec.ts │ │ │ │ ├── object-flattener.ts │ │ │ │ ├── parse-cmd.spec.ts │ │ │ │ ├── parse-cmd.ts │ │ │ │ ├── parse-dotenv.spec.ts │ │ │ │ ├── parse-dotenv.ts │ │ │ │ ├── pluralize.spec.ts │ │ │ │ ├── pluralize.ts │ │ │ │ ├── refacto-payload.spec.ts │ │ │ │ ├── refacto-payload.ts │ │ │ │ ├── resource-calculations.spec.ts │ │ │ │ ├── resource-calculations.ts │ │ │ │ ├── scroll-parent-to-child.ts │ │ │ │ ├── short-to-long-id.spec.ts │ │ │ │ ├── short-to-long-id.ts │ │ │ │ ├── sort-by-key.spec.ts │ │ │ │ ├── sort-by-key.ts │ │ │ │ ├── status-actions-available.ts │ │ │ │ ├── trim-id.spec.ts │ │ │ │ ├── trim-id.ts │ │ │ │ ├── uppercase-first-letter.ts │ │ │ │ ├── url-code-editor.spec.ts │ │ │ │ └── url-code-editor.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-node-env │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── shared-util-node-env.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-payment │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── util-chargebee.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-services │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── build-edit-service-payload.spec.ts │ │ │ │ ├── build-edit-service-payload.ts │ │ │ │ ├── get-service-state-colors.ts │ │ │ │ ├── is-trying-to-remove-last-public-port.spec.ts │ │ │ │ ├── is-trying-to-remove-last-public-port.ts │ │ │ │ └── service-templates.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-tests │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── shared-util-tests.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-types │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── shared-util-types.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── util-web-sockets │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── metrics-web-socket-listener │ │ │ │ └── metrics-web-socket-listener.tsx │ │ │ │ ├── status-web-socket-listener │ │ │ │ └── status-web-socket-listener.tsx │ │ │ │ ├── use-metrics-web-socket │ │ │ │ └── use-metrics-web-socket.ts │ │ │ │ └── use-status-web-sockets │ │ │ │ └── use-status-web-sockets.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── utils │ │ ├── .babelrc │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── http │ │ │ └── interceptors │ │ │ └── auth-interceptor │ │ │ ├── auth-interceptor.spec.ts │ │ │ └── auth-interceptor.tsx │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json └── state │ └── util-queries │ ├── .babelrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── project.json │ ├── src │ ├── index.ts │ └── lib │ │ ├── queries │ │ └── queries.ts │ │ └── use-react-query-ws-subscription │ │ ├── use-react-query-ws-subscription.spec.tsx │ │ └── use-react-query-ws-subscription.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── migrations.json ├── nginx.conf ├── nx.json ├── package.json ├── pull_request_template.md ├── s.sh ├── tailwind-workspace-preset.js ├── tsconfig.base.json └── yarn.lock /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.cursor/rules/development-commands.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.cursor/rules/development-commands.mdc -------------------------------------------------------------------------------- /.cursor/rules/naming-conventions.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.cursor/rules/naming-conventions.mdc -------------------------------------------------------------------------------- /.cursor/rules/pre-commit-workflow.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.cursor/rules/pre-commit-workflow.mdc -------------------------------------------------------------------------------- /.cursor/rules/project-architecture.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.cursor/rules/project-architecture.mdc -------------------------------------------------------------------------------- /.cursor/rules/react-typescript-standards.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.cursor/rules/react-typescript-standards.mdc -------------------------------------------------------------------------------- /.cursor/rules/styling-standards.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.cursor/rules/styling-standards.mdc -------------------------------------------------------------------------------- /.cursor/rules/testing-standards.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.cursor/rules/testing-standards.mdc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | !.storybook 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.github/workflows/deploy-production.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.github/workflows/deploy-staging.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.github/workflows/semantic-release.yml -------------------------------------------------------------------------------- /.github/workflows/test-build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.github/workflows/test-build-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx pretty-quick --staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.prettierrc -------------------------------------------------------------------------------- /.test.env: -------------------------------------------------------------------------------- 1 | TZ=UTC 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarn/patches/posthog-js-npm-1.260.1-ec574bf323.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.yarn/patches/posthog-js-npm-1.260.1-ec574bf323.patch -------------------------------------------------------------------------------- /.yarn/releases/yarn-berry.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.yarn/releases/yarn-berry.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/AGENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/README.md -------------------------------------------------------------------------------- /Storybook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/Storybook -------------------------------------------------------------------------------- /__tests__/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/__tests__/mocks.ts -------------------------------------------------------------------------------- /__tests__/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/__tests__/server.ts -------------------------------------------------------------------------------- /__tests__/utils/mock-use-query-result.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/__tests__/utils/mock-use-query-result.tsx -------------------------------------------------------------------------------- /__tests__/utils/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/__tests__/utils/providers.tsx -------------------------------------------------------------------------------- /__tests__/utils/resize-observer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/__tests__/utils/resize-observer.tsx -------------------------------------------------------------------------------- /__tests__/utils/setup-jest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/__tests__/utils/setup-jest.tsx -------------------------------------------------------------------------------- /__tests__/utils/wrap-with-react-hook-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/__tests__/utils/wrap-with-react-hook-form.tsx -------------------------------------------------------------------------------- /adr/fontawesome-icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/adr/fontawesome-icons.md -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/console-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/console-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console-e2e/cypress.json -------------------------------------------------------------------------------- /apps/console-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console-e2e/project.json -------------------------------------------------------------------------------- /apps/console-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/console-e2e/src/integration/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console-e2e/src/integration/app.spec.ts -------------------------------------------------------------------------------- /apps/console-e2e/src/support/app.po.ts: -------------------------------------------------------------------------------- 1 | export const getGreeting = () => cy.get('h1') 2 | -------------------------------------------------------------------------------- /apps/console-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/console-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/console-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/console/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/.babelrc -------------------------------------------------------------------------------- /apps/console/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/.browserslistrc -------------------------------------------------------------------------------- /apps/console/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/.eslintrc.json -------------------------------------------------------------------------------- /apps/console/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/jest.config.ts -------------------------------------------------------------------------------- /apps/console/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/postcss.config.js -------------------------------------------------------------------------------- /apps/console/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/project.json -------------------------------------------------------------------------------- /apps/console/src/app/app.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/app/app.spec.tsx -------------------------------------------------------------------------------- /apps/console/src/app/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/app/app.tsx -------------------------------------------------------------------------------- /apps/console/src/app/components/preview-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/app/components/preview-code.tsx -------------------------------------------------------------------------------- /apps/console/src/app/components/redirect-overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/app/components/redirect-overview.tsx -------------------------------------------------------------------------------- /apps/console/src/app/components/scroll-to-top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/app/components/scroll-to-top.tsx -------------------------------------------------------------------------------- /apps/console/src/app/router/main.router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/app/router/main.router.tsx -------------------------------------------------------------------------------- /apps/console/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/console/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/favicon.ico -------------------------------------------------------------------------------- /apps/console/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/index.html -------------------------------------------------------------------------------- /apps/console/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/src/main.tsx -------------------------------------------------------------------------------- /apps/console/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/tailwind.config.js -------------------------------------------------------------------------------- /apps/console/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/tsconfig.app.json -------------------------------------------------------------------------------- /apps/console/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/tsconfig.json -------------------------------------------------------------------------------- /apps/console/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/tsconfig.spec.json -------------------------------------------------------------------------------- /apps/console/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/webpack.config.js -------------------------------------------------------------------------------- /apps/console/webpack.config.old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/console/webpack.config.old.js -------------------------------------------------------------------------------- /apps/design-system-e2e/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/design-system-e2e/.eslintrc.json -------------------------------------------------------------------------------- /apps/design-system-e2e/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/design-system-e2e/cypress.json -------------------------------------------------------------------------------- /apps/design-system-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/design-system-e2e/project.json -------------------------------------------------------------------------------- /apps/design-system-e2e/src/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/design-system-e2e/src/fixtures/example.json -------------------------------------------------------------------------------- /apps/design-system-e2e/src/support/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/design-system-e2e/src/support/commands.ts -------------------------------------------------------------------------------- /apps/design-system-e2e/src/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/design-system-e2e/src/support/index.ts -------------------------------------------------------------------------------- /apps/design-system-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/apps/design-system-e2e/tsconfig.json -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/babel.config.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/jest.preset.js -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/domains/cloud-providers/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/cloud-providers/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/cloud-providers/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-cloud-providers-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/cloud-providers/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/cloud-providers/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/cloud-providers/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/cloud-providers/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/feature/README.md -------------------------------------------------------------------------------- /libs/domains/cloud-providers/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/cloud-providers/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/feature/project.json -------------------------------------------------------------------------------- /libs/domains/cloud-providers/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/cloud-providers/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/cloud-providers/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cloud-providers/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/README.md -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/project.json -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/src/lib/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/src/lib/data.ts -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/cluster-metrics/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/cluster-metrics/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/clusters/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/clusters/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/clusters/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/clusters/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/clusters/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-clusters-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/clusters/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/clusters/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/clusters/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/clusters/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/clusters/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/clusters/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/README.md -------------------------------------------------------------------------------- /libs/domains/clusters/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/clusters/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/project.json -------------------------------------------------------------------------------- /libs/domains/clusters/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/clusters/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/clusters/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/clusters/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/clusters/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/custom-domains/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/custom-domains/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/custom-domains/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/custom-domains/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/custom-domains/data-access/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/data-access/src/index.ts -------------------------------------------------------------------------------- /libs/domains/custom-domains/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/README.md -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/project.json -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/custom-domains/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/custom-domains/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/environment-logs/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environment-logs/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/environment-logs/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environment-logs/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/environment-logs/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environment-logs/feature/README.md -------------------------------------------------------------------------------- /libs/domains/environment-logs/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environment-logs/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/environment-logs/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environment-logs/feature/project.json -------------------------------------------------------------------------------- /libs/domains/environment-logs/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environment-logs/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/environment-logs/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environment-logs/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/environments/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/environments/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/environments/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/environments/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/environments/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-environments-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/environments/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/environments/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/environments/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/environments/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/README.md -------------------------------------------------------------------------------- /libs/domains/environments/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/environments/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/project.json -------------------------------------------------------------------------------- /libs/domains/environments/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/environments/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/environments/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/environments/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/environments/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/event/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/.babelrc -------------------------------------------------------------------------------- /libs/domains/event/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/event/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/README.md -------------------------------------------------------------------------------- /libs/domains/event/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/event/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/project.json -------------------------------------------------------------------------------- /libs/domains/event/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/event.queries' 2 | -------------------------------------------------------------------------------- /libs/domains/event/src/lib/event.queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/src/lib/event.queries.ts -------------------------------------------------------------------------------- /libs/domains/event/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/event/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/event/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/event/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/observability/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/observability/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/observability/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/observability/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/observability/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-observability-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/observability/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/observability/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/observability/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/observability/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/README.md -------------------------------------------------------------------------------- /libs/domains/observability/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/observability/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/project.json -------------------------------------------------------------------------------- /libs/domains/observability/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/observability/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/observability/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/observability/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/observability/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/organizations/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/organizations/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/organizations/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/organizations/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/organizations/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-organizations-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/organizations/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/organizations/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/organizations/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/organizations/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/feature/README.md -------------------------------------------------------------------------------- /libs/domains/organizations/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/organizations/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/feature/project.json -------------------------------------------------------------------------------- /libs/domains/organizations/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/organizations/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/organizations/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/organizations/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/projects/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/projects/data-access/README.md: -------------------------------------------------------------------------------- 1 | # data-access 2 | 3 | This library was generated with [Nx](https://nx.dev). 4 | -------------------------------------------------------------------------------- /libs/domains/projects/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/projects/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-projects-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/projects/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/projects/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/projects/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/projects/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/projects/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/README.md -------------------------------------------------------------------------------- /libs/domains/projects/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/projects/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/project.json -------------------------------------------------------------------------------- /libs/domains/projects/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/projects/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/projects/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/projects/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/projects/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/service-helm/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/service-helm/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/service-helm/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-service-helm-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/service-helm/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/service-helm/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/service-helm/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/service-helm/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/feature/README.md -------------------------------------------------------------------------------- /libs/domains/service-helm/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/service-helm/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/feature/project.json -------------------------------------------------------------------------------- /libs/domains/service-helm/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/service-helm/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/service-helm/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-helm/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/service-logs/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/service-logs/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/service-logs/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-service-logs-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/service-logs/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/service-logs/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/service-logs/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/service-logs/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/feature/README.md -------------------------------------------------------------------------------- /libs/domains/service-logs/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/service-logs/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/feature/project.json -------------------------------------------------------------------------------- /libs/domains/service-logs/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/service-logs/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/service-logs/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-logs/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/service-terraform/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-service-terraform-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/service-terraform/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-terraform/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/service-terraform/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-terraform/feature/README.md -------------------------------------------------------------------------------- /libs/domains/service-terraform/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-terraform/feature/project.json -------------------------------------------------------------------------------- /libs/domains/service-terraform/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/service-terraform/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/services/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/services/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/services/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/services/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/services/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-services-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/services/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/services/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/services/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/services/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/services/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/README.md -------------------------------------------------------------------------------- /libs/domains/services/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/services/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/project.json -------------------------------------------------------------------------------- /libs/domains/services/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/services/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/services/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/services/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/services/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/users-sign-up/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/users-sign-up/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/users-sign-up/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-users-sign-up-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/users-sign-up/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/users-sign-up/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/users-sign-up/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/feature/README.md -------------------------------------------------------------------------------- /libs/domains/users-sign-up/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/users-sign-up/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/feature/project.json -------------------------------------------------------------------------------- /libs/domains/users-sign-up/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/users-sign-up/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/users-sign-up/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/variables/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/variables/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/data-access/README.md -------------------------------------------------------------------------------- /libs/domains/variables/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/variables/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/data-access/project.json -------------------------------------------------------------------------------- /libs/domains/variables/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-variables-data-access' 2 | -------------------------------------------------------------------------------- /libs/domains/variables/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/variables/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/.babelrc -------------------------------------------------------------------------------- /libs/domains/variables/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/variables/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/README.md -------------------------------------------------------------------------------- /libs/domains/variables/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/variables/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/project.json -------------------------------------------------------------------------------- /libs/domains/variables/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/src/index.ts -------------------------------------------------------------------------------- /libs/domains/variables/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/variables/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/variables/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/domains/variables/util/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/util/.eslintrc.json -------------------------------------------------------------------------------- /libs/domains/variables/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/util/README.md -------------------------------------------------------------------------------- /libs/domains/variables/util/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/util/jest.config.ts -------------------------------------------------------------------------------- /libs/domains/variables/util/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/util/project.json -------------------------------------------------------------------------------- /libs/domains/variables/util/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/util/src/index.ts -------------------------------------------------------------------------------- /libs/domains/variables/util/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/util/tsconfig.json -------------------------------------------------------------------------------- /libs/domains/variables/util/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/util/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/domains/variables/util/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/domains/variables/util/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/application/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/.babelrc -------------------------------------------------------------------------------- /libs/pages/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/README.md -------------------------------------------------------------------------------- /libs/pages/application/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/project.json -------------------------------------------------------------------------------- /libs/pages/application/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-application' 2 | -------------------------------------------------------------------------------- /libs/pages/application/src/lib/page-application.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/src/lib/page-application.tsx -------------------------------------------------------------------------------- /libs/pages/application/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/cluster/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/.babelrc -------------------------------------------------------------------------------- /libs/pages/cluster/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/README.md -------------------------------------------------------------------------------- /libs/pages/cluster/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/cluster/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/project.json -------------------------------------------------------------------------------- /libs/pages/cluster/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-cluster' 2 | -------------------------------------------------------------------------------- /libs/pages/cluster/src/lib/page-cluster.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/src/lib/page-cluster.spec.tsx -------------------------------------------------------------------------------- /libs/pages/cluster/src/lib/page-cluster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/src/lib/page-cluster.tsx -------------------------------------------------------------------------------- /libs/pages/cluster/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/cluster/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/cluster/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/cluster/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/cluster/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/clusters/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/.babelrc -------------------------------------------------------------------------------- /libs/pages/clusters/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/clusters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/README.md -------------------------------------------------------------------------------- /libs/pages/clusters/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/clusters/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/project.json -------------------------------------------------------------------------------- /libs/pages/clusters/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/src/index.ts -------------------------------------------------------------------------------- /libs/pages/clusters/src/lib/page-clusters.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/src/lib/page-clusters.spec.tsx -------------------------------------------------------------------------------- /libs/pages/clusters/src/lib/page-clusters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/src/lib/page-clusters.tsx -------------------------------------------------------------------------------- /libs/pages/clusters/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/clusters/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/clusters/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/clusters/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/clusters/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/database/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/.babelrc -------------------------------------------------------------------------------- /libs/pages/database/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/README.md -------------------------------------------------------------------------------- /libs/pages/database/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/database/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/project.json -------------------------------------------------------------------------------- /libs/pages/database/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-database' 2 | -------------------------------------------------------------------------------- /libs/pages/database/src/lib/page-database.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/src/lib/page-database.spec.tsx -------------------------------------------------------------------------------- /libs/pages/database/src/lib/page-database.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/src/lib/page-database.tsx -------------------------------------------------------------------------------- /libs/pages/database/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/database/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/database/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/database/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/database/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/environments/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/.babelrc -------------------------------------------------------------------------------- /libs/pages/environments/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/environments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/README.md -------------------------------------------------------------------------------- /libs/pages/environments/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/environments/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/project.json -------------------------------------------------------------------------------- /libs/pages/environments/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-environments' 2 | -------------------------------------------------------------------------------- /libs/pages/environments/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/environments/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/environments/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/environments/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/environments/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/events/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/.babelrc -------------------------------------------------------------------------------- /libs/pages/events/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/README.md -------------------------------------------------------------------------------- /libs/pages/events/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/events/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/project.json -------------------------------------------------------------------------------- /libs/pages/events/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-events' 2 | -------------------------------------------------------------------------------- /libs/pages/events/src/lib/page-events.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/src/lib/page-events.spec.tsx -------------------------------------------------------------------------------- /libs/pages/events/src/lib/page-events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/src/lib/page-events.tsx -------------------------------------------------------------------------------- /libs/pages/events/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/events/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/events/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/events/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/events/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/layout/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/.babelrc -------------------------------------------------------------------------------- /libs/pages/layout/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/README.md -------------------------------------------------------------------------------- /libs/pages/layout/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/layout/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/project.json -------------------------------------------------------------------------------- /libs/pages/layout/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/src/index.ts -------------------------------------------------------------------------------- /libs/pages/layout/src/lib/feature/layout/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/src/lib/feature/layout/layout.tsx -------------------------------------------------------------------------------- /libs/pages/layout/src/lib/ui/top-bar/top-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/src/lib/ui/top-bar/top-bar.tsx -------------------------------------------------------------------------------- /libs/pages/layout/src/lib/utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/src/lib/utils/utils.tsx -------------------------------------------------------------------------------- /libs/pages/layout/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/layout/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/layout/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/layout/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/login/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/.babelrc -------------------------------------------------------------------------------- /libs/pages/login/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/README.md -------------------------------------------------------------------------------- /libs/pages/login/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/login/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/project.json -------------------------------------------------------------------------------- /libs/pages/login/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/src/index.ts -------------------------------------------------------------------------------- /libs/pages/login/src/lib/page-login.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/src/lib/page-login.spec.tsx -------------------------------------------------------------------------------- /libs/pages/login/src/lib/page-login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/src/lib/page-login.tsx -------------------------------------------------------------------------------- /libs/pages/login/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/login/src/lib/ui/login/login.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/src/lib/ui/login/login.spec.tsx -------------------------------------------------------------------------------- /libs/pages/login/src/lib/ui/login/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/src/lib/ui/login/login.tsx -------------------------------------------------------------------------------- /libs/pages/login/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/login/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/login/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/login/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/logs/environment/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/environment/.babelrc -------------------------------------------------------------------------------- /libs/pages/logs/environment/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/environment/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/logs/environment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/environment/README.md -------------------------------------------------------------------------------- /libs/pages/logs/environment/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/environment/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/logs/environment/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/environment/project.json -------------------------------------------------------------------------------- /libs/pages/logs/environment/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-environment-logs' 2 | -------------------------------------------------------------------------------- /libs/pages/logs/environment/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/environment/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/logs/environment/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/environment/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/logs/environment/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/environment/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/logs/infra/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/.babelrc -------------------------------------------------------------------------------- /libs/pages/logs/infra/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/logs/infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/README.md -------------------------------------------------------------------------------- /libs/pages/logs/infra/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/logs/infra/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/project.json -------------------------------------------------------------------------------- /libs/pages/logs/infra/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-infra-logs' 2 | -------------------------------------------------------------------------------- /libs/pages/logs/infra/src/lib/page-infra-logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/src/lib/page-infra-logs.tsx -------------------------------------------------------------------------------- /libs/pages/logs/infra/src/lib/ui/row/row.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/src/lib/ui/row/row.spec.tsx -------------------------------------------------------------------------------- /libs/pages/logs/infra/src/lib/ui/row/row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/src/lib/ui/row/row.tsx -------------------------------------------------------------------------------- /libs/pages/logs/infra/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/logs/infra/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/logs/infra/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/logs/infra/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/onboarding/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/.babelrc -------------------------------------------------------------------------------- /libs/pages/onboarding/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/onboarding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/README.md -------------------------------------------------------------------------------- /libs/pages/onboarding/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/onboarding/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/project.json -------------------------------------------------------------------------------- /libs/pages/onboarding/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-onboarding' 2 | -------------------------------------------------------------------------------- /libs/pages/onboarding/src/lib/page-onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/src/lib/page-onboarding.tsx -------------------------------------------------------------------------------- /libs/pages/onboarding/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/onboarding/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/onboarding/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/onboarding/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/onboarding/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/overview/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/.babelrc -------------------------------------------------------------------------------- /libs/pages/overview/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/overview/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/README.md -------------------------------------------------------------------------------- /libs/pages/overview/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/overview/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/project.json -------------------------------------------------------------------------------- /libs/pages/overview/feature/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/overview' 2 | -------------------------------------------------------------------------------- /libs/pages/overview/feature/src/lib/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/src/lib/overview.tsx -------------------------------------------------------------------------------- /libs/pages/overview/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/overview/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/overview/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/overview/ui/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/.babelrc -------------------------------------------------------------------------------- /libs/pages/overview/ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/overview/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/README.md -------------------------------------------------------------------------------- /libs/pages/overview/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/overview/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/project.json -------------------------------------------------------------------------------- /libs/pages/overview/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/src/index.ts -------------------------------------------------------------------------------- /libs/pages/overview/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/overview/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/overview/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/overview/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/services/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/.babelrc -------------------------------------------------------------------------------- /libs/pages/services/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/README.md -------------------------------------------------------------------------------- /libs/pages/services/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/services/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/project.json -------------------------------------------------------------------------------- /libs/pages/services/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/src/index.ts -------------------------------------------------------------------------------- /libs/pages/services/src/lib/page-services.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/src/lib/page-services.spec.tsx -------------------------------------------------------------------------------- /libs/pages/services/src/lib/page-services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/src/lib/page-services.tsx -------------------------------------------------------------------------------- /libs/pages/services/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/services/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/services/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/services/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/settings/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/.babelrc -------------------------------------------------------------------------------- /libs/pages/settings/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/README.md -------------------------------------------------------------------------------- /libs/pages/settings/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/project.json -------------------------------------------------------------------------------- /libs/pages/settings/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/src/index.ts -------------------------------------------------------------------------------- /libs/pages/settings/src/lib/page-alerting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/src/lib/page-alerting.tsx -------------------------------------------------------------------------------- /libs/pages/settings/src/lib/page-settings.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/src/lib/page-settings.spec.tsx -------------------------------------------------------------------------------- /libs/pages/settings/src/lib/page-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/src/lib/page-settings.tsx -------------------------------------------------------------------------------- /libs/pages/settings/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/settings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/settings/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/settings/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/settings/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/pages/user/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/.babelrc -------------------------------------------------------------------------------- /libs/pages/user/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/.eslintrc.json -------------------------------------------------------------------------------- /libs/pages/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/README.md -------------------------------------------------------------------------------- /libs/pages/user/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/jest.config.ts -------------------------------------------------------------------------------- /libs/pages/user/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/project.json -------------------------------------------------------------------------------- /libs/pages/user/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/page-user' 2 | -------------------------------------------------------------------------------- /libs/pages/user/src/lib/page-user.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/src/lib/page-user.spec.tsx -------------------------------------------------------------------------------- /libs/pages/user/src/lib/page-user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/src/lib/page-user.tsx -------------------------------------------------------------------------------- /libs/pages/user/src/lib/router/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/src/lib/router/router.tsx -------------------------------------------------------------------------------- /libs/pages/user/src/lib/ui/container/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/src/lib/ui/container/container.tsx -------------------------------------------------------------------------------- /libs/pages/user/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/tsconfig.json -------------------------------------------------------------------------------- /libs/pages/user/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/pages/user/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/pages/user/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/assistant/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/.babelrc -------------------------------------------------------------------------------- /libs/shared/assistant/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/assistant/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/README.md -------------------------------------------------------------------------------- /libs/shared/assistant/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/assistant/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/project.json -------------------------------------------------------------------------------- /libs/shared/assistant/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/src/index.ts -------------------------------------------------------------------------------- /libs/shared/assistant/feature/src/lib/hit/hit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/src/lib/hit/hit.tsx -------------------------------------------------------------------------------- /libs/shared/assistant/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/assistant/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/assistant/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/assistant/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/auth/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/.babelrc -------------------------------------------------------------------------------- /libs/shared/auth/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/README.md -------------------------------------------------------------------------------- /libs/shared/auth/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/auth/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/project.json -------------------------------------------------------------------------------- /libs/shared/auth/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/src/index.ts -------------------------------------------------------------------------------- /libs/shared/auth/src/lib/enum/auth.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/src/lib/enum/auth.enum.ts -------------------------------------------------------------------------------- /libs/shared/auth/src/lib/use-auth/use-auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/src/lib/use-auth/use-auth.spec.ts -------------------------------------------------------------------------------- /libs/shared/auth/src/lib/use-auth/use-auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/src/lib/use-auth/use-auth.tsx -------------------------------------------------------------------------------- /libs/shared/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/auth/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/auth/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/console-shared/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/.babelrc -------------------------------------------------------------------------------- /libs/shared/console-shared/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/console-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/README.md -------------------------------------------------------------------------------- /libs/shared/console-shared/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/console-shared/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/project.json -------------------------------------------------------------------------------- /libs/shared/console-shared/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/src/index.ts -------------------------------------------------------------------------------- /libs/shared/console-shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/console-shared/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/console-shared/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/console-shared/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/devops-copilot/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/data-access/README.md -------------------------------------------------------------------------------- /libs/shared/devops-copilot/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/data-access/project.json -------------------------------------------------------------------------------- /libs/shared/devops-copilot/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-devops-copilot-data-access' 2 | -------------------------------------------------------------------------------- /libs/shared/devops-copilot/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/feature/.babelrc -------------------------------------------------------------------------------- /libs/shared/devops-copilot/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/devops-copilot/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/feature/README.md -------------------------------------------------------------------------------- /libs/shared/devops-copilot/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/devops-copilot/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/feature/project.json -------------------------------------------------------------------------------- /libs/shared/devops-copilot/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/feature/src/index.ts -------------------------------------------------------------------------------- /libs/shared/devops-copilot/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/devops-copilot/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/enums/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/.babelrc -------------------------------------------------------------------------------- /libs/shared/enums/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/enums/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/README.md -------------------------------------------------------------------------------- /libs/shared/enums/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/enums/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/project.json -------------------------------------------------------------------------------- /libs/shared/enums/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/index.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/colors.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/colors.enum.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/constants/countries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/constants/countries.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/external-service.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/external-service.enum.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/icon.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/icon.enum.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/job.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/job.type.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/logs-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/logs-type.enum.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/member-role.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/member-role.enum.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/memory-size.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/memory-size.enum.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/running-state.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/running-state.enum.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/service-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/service-type.enum.ts -------------------------------------------------------------------------------- /libs/shared/enums/src/lib/utils/get-service-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/src/lib/utils/get-service-type.ts -------------------------------------------------------------------------------- /libs/shared/enums/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/enums/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/enums/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/enums/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/factories/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/.babelrc -------------------------------------------------------------------------------- /libs/shared/factories/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/factories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/README.md -------------------------------------------------------------------------------- /libs/shared/factories/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/factories/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/project.json -------------------------------------------------------------------------------- /libs/shared/factories/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/src/index.ts -------------------------------------------------------------------------------- /libs/shared/factories/src/lib/auth-provider.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/src/lib/auth-provider.mock.ts -------------------------------------------------------------------------------- /libs/shared/factories/src/lib/events.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/src/lib/events.mock.ts -------------------------------------------------------------------------------- /libs/shared/factories/src/lib/helm-factory.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/src/lib/helm-factory.mock.ts -------------------------------------------------------------------------------- /libs/shared/factories/src/lib/job-factory.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/src/lib/job-factory.mock.ts -------------------------------------------------------------------------------- /libs/shared/factories/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/factories/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/factories/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/factories/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/iam/data-access/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/data-access/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/iam/data-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/data-access/README.md -------------------------------------------------------------------------------- /libs/shared/iam/data-access/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/data-access/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/iam/data-access/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/data-access/project.json -------------------------------------------------------------------------------- /libs/shared/iam/data-access/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/domains-user-data-access' 2 | -------------------------------------------------------------------------------- /libs/shared/iam/data-access/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/data-access/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/iam/data-access/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/data-access/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/iam/data-access/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/data-access/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/iam/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/.babelrc -------------------------------------------------------------------------------- /libs/shared/iam/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/iam/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/README.md -------------------------------------------------------------------------------- /libs/shared/iam/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/iam/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/project.json -------------------------------------------------------------------------------- /libs/shared/iam/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/src/index.ts -------------------------------------------------------------------------------- /libs/shared/iam/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/iam/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/iam/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/iam/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/interfaces/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/.babelrc -------------------------------------------------------------------------------- /libs/shared/interfaces/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/interfaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/README.md -------------------------------------------------------------------------------- /libs/shared/interfaces/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/interfaces/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/project.json -------------------------------------------------------------------------------- /libs/shared/interfaces/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/src/index.ts -------------------------------------------------------------------------------- /libs/shared/interfaces/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/interfaces/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/interfaces/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/interfaces/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/router/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/.babelrc -------------------------------------------------------------------------------- /libs/shared/router/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/README.md -------------------------------------------------------------------------------- /libs/shared/router/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/router/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/project.json -------------------------------------------------------------------------------- /libs/shared/router/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/src/index.ts -------------------------------------------------------------------------------- /libs/shared/router/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/router/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/router/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/router/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/routes/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/.babelrc -------------------------------------------------------------------------------- /libs/shared/routes/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/README.md -------------------------------------------------------------------------------- /libs/shared/routes/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/routes/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/project.json -------------------------------------------------------------------------------- /libs/shared/routes/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/router' 2 | -------------------------------------------------------------------------------- /libs/shared/routes/src/lib/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/src/lib/router.ts -------------------------------------------------------------------------------- /libs/shared/routes/src/lib/sub-router/job.router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/src/lib/sub-router/job.router.ts -------------------------------------------------------------------------------- /libs/shared/routes/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/routes/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/routes/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/routes/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/.babelrc -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/README.md -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/project.json -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/src/index.ts -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/spotlight/feature/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/spotlight/feature/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/toast/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/.babelrc -------------------------------------------------------------------------------- /libs/shared/toast/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/toast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/README.md -------------------------------------------------------------------------------- /libs/shared/toast/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/toast/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/project.json -------------------------------------------------------------------------------- /libs/shared/toast/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/src/index.ts -------------------------------------------------------------------------------- /libs/shared/toast/src/lib/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/src/lib/toast.tsx -------------------------------------------------------------------------------- /libs/shared/toast/src/lib/utils/toast-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/src/lib/utils/toast-error.tsx -------------------------------------------------------------------------------- /libs/shared/toast/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/toast/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/toast/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/toast/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/ui/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/.babelrc -------------------------------------------------------------------------------- /libs/shared/ui/.eslintignore: -------------------------------------------------------------------------------- 1 | !.storybook 2 | -------------------------------------------------------------------------------- /libs/shared/ui/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/ui/.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/.storybook/main.ts -------------------------------------------------------------------------------- /libs/shared/ui/.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/.storybook/preview.tsx -------------------------------------------------------------------------------- /libs/shared/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/README.md -------------------------------------------------------------------------------- /libs/shared/ui/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/postcss.config.js -------------------------------------------------------------------------------- /libs/shared/ui/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/project.json -------------------------------------------------------------------------------- /libs/shared/ui/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/index.ts -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/airbyte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/airbyte.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/datadog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/datadog.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/ec2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/ec2.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/kubecost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/kubecost.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/lambda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/lambda.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/s3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/s3.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/scaleway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/scaleway.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/temporal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/temporal.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/devicon/windmill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/devicon/windmill.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/fonts/font-awesome/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/logos/logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/logos/logo-black.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/logos/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/logos/logo-icon.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/logos/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/logos/logo-white.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/services/cron-job.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/services/cron-job.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/services/database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/services/database.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/assets/services/helm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/assets/services/helm.svg -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/avatar/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/avatar/avatar.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/badge/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/badge/badge.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/banner/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/banner/banner.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/board/board.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/board/board.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/button/button.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/chart/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/chart/chart.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/header/header.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/icon/icon.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/icon/icons/do.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/icon/icons/do.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/kbd/kbd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/kbd/kbd.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/link/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/link/link.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/menu/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/menu/menu.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/modal/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/modal/modal.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/navbar/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/navbar/navbar.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/slider/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/slider/slider.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/table/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/table/table.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/tabs/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/tabs/tabs.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/tag/tag.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/tag/tag.spec.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/tag/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/tag/tag.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/components/toast/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/components/toast/toast.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/base/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/base/fonts.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/base/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/base/icons.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/base/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/base/variable.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/components/input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/components/input.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/components/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/components/menu.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/components/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/components/modal.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/main.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/object/animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/object/animation.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/object/code-ansi.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/object/code-ansi.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/styles/object/link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/styles/object/link.scss -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/utils/ansi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/utils/ansi.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/utils/toast-error.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/utils/toast-error.spec.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/utils/toast-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/utils/toast-error.tsx -------------------------------------------------------------------------------- /libs/shared/ui/src/lib/utils/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/src/lib/utils/toast.tsx -------------------------------------------------------------------------------- /libs/shared/ui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/tailwind.config.js -------------------------------------------------------------------------------- /libs/shared/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/ui/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/ui/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/ui/tsconfig.storybook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/ui/tsconfig.storybook.json -------------------------------------------------------------------------------- /libs/shared/util-const/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-const/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-const/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-const/README.md -------------------------------------------------------------------------------- /libs/shared/util-const/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-const/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-const/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-const/project.json -------------------------------------------------------------------------------- /libs/shared/util-const/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared-util-const' 2 | -------------------------------------------------------------------------------- /libs/shared/util-const/src/lib/shared-util-const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-const/src/lib/shared-util-const.ts -------------------------------------------------------------------------------- /libs/shared/util-const/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-const/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-const/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-const/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-const/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-const/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-dates/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-dates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/README.md -------------------------------------------------------------------------------- /libs/shared/util-dates/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-dates/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/project.json -------------------------------------------------------------------------------- /libs/shared/util-dates/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/util-dates' 2 | -------------------------------------------------------------------------------- /libs/shared/util-dates/src/lib/util-dates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/src/lib/util-dates.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-dates/src/lib/util-dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/src/lib/util-dates.ts -------------------------------------------------------------------------------- /libs/shared/util-dates/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-dates/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-dates/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-dates/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-git/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/README.md -------------------------------------------------------------------------------- /libs/shared/util-git/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-git/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/project.json -------------------------------------------------------------------------------- /libs/shared/util-git/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/util-git' 2 | -------------------------------------------------------------------------------- /libs/shared/util-git/src/lib/util-git.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/src/lib/util-git.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-git/src/lib/util-git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/src/lib/util-git.ts -------------------------------------------------------------------------------- /libs/shared/util-git/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-git/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-git/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-git/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-hooks/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/.babelrc -------------------------------------------------------------------------------- /libs/shared/util-hooks/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/README.md -------------------------------------------------------------------------------- /libs/shared/util-hooks/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-hooks/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/project.json -------------------------------------------------------------------------------- /libs/shared/util-hooks/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/src/index.ts -------------------------------------------------------------------------------- /libs/shared/util-hooks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-hooks/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-hooks/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-hooks/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-js/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/README.md -------------------------------------------------------------------------------- /libs/shared/util-js/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-js/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/project.json -------------------------------------------------------------------------------- /libs/shared/util-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/index.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/build-git-repo-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/build-git-repo-url.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/convert-memory-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/convert-memory-size.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/cost-to-human.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/cost-to-human.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/cost-to-human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/cost-to-human.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/custom-tw-merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/custom-tw-merge.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/find-moved-indices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/find-moved-indices.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/format-metric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/format-metric.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/format-plan-display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/format-plan-display.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/generate-doc-url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/generate-doc-url.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/object-flattener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/object-flattener.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/parse-cmd.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/parse-cmd.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/parse-cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/parse-cmd.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/parse-dotenv.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/parse-dotenv.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/parse-dotenv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/parse-dotenv.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/pluralize.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/pluralize.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/pluralize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/pluralize.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/refacto-payload.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/refacto-payload.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/refacto-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/refacto-payload.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/short-to-long-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/short-to-long-id.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/sort-by-key.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/sort-by-key.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/sort-by-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/sort-by-key.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/trim-id.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/trim-id.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/trim-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/trim-id.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/url-code-editor.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/url-code-editor.spec.ts -------------------------------------------------------------------------------- /libs/shared/util-js/src/lib/url-code-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/src/lib/url-code-editor.ts -------------------------------------------------------------------------------- /libs/shared/util-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-js/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-js/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-js/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-node-env/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-node-env/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-node-env/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-node-env/README.md -------------------------------------------------------------------------------- /libs/shared/util-node-env/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-node-env/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-node-env/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-node-env/project.json -------------------------------------------------------------------------------- /libs/shared/util-node-env/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared-util-node-env' 2 | -------------------------------------------------------------------------------- /libs/shared/util-node-env/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-node-env/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-node-env/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-node-env/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-node-env/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-node-env/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-payment/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-payment/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-payment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-payment/README.md -------------------------------------------------------------------------------- /libs/shared/util-payment/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-payment/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-payment/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-payment/project.json -------------------------------------------------------------------------------- /libs/shared/util-payment/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/util-chargebee' 2 | -------------------------------------------------------------------------------- /libs/shared/util-payment/src/lib/util-chargebee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-payment/src/lib/util-chargebee.ts -------------------------------------------------------------------------------- /libs/shared/util-payment/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-payment/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-payment/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-payment/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-payment/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-payment/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-services/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-services/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-services/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-services/README.md -------------------------------------------------------------------------------- /libs/shared/util-services/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-services/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-services/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-services/project.json -------------------------------------------------------------------------------- /libs/shared/util-services/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-services/src/index.ts -------------------------------------------------------------------------------- /libs/shared/util-services/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-services/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-services/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-services/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-services/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-services/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-tests/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-tests/.babelrc -------------------------------------------------------------------------------- /libs/shared/util-tests/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-tests/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-tests/README.md -------------------------------------------------------------------------------- /libs/shared/util-tests/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-tests/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-tests/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-tests/project.json -------------------------------------------------------------------------------- /libs/shared/util-tests/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared-util-tests' 2 | -------------------------------------------------------------------------------- /libs/shared/util-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-tests/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-tests/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-tests/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-tests/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-tests/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-types/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-types/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-types/README.md -------------------------------------------------------------------------------- /libs/shared/util-types/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-types/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-types/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-types/project.json -------------------------------------------------------------------------------- /libs/shared/util-types/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/shared-util-types' 2 | -------------------------------------------------------------------------------- /libs/shared/util-types/src/lib/shared-util-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-types/src/lib/shared-util-types.ts -------------------------------------------------------------------------------- /libs/shared/util-types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-types/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-types/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-types/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-types/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-types/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/.babelrc -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/README.md -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/project.json -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/src/index.ts -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/util-web-sockets/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/util-web-sockets/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/shared/utils/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/.babelrc -------------------------------------------------------------------------------- /libs/shared/utils/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/.eslintrc.json -------------------------------------------------------------------------------- /libs/shared/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/README.md -------------------------------------------------------------------------------- /libs/shared/utils/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/jest.config.ts -------------------------------------------------------------------------------- /libs/shared/utils/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/project.json -------------------------------------------------------------------------------- /libs/shared/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/src/index.ts -------------------------------------------------------------------------------- /libs/shared/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/tsconfig.json -------------------------------------------------------------------------------- /libs/shared/utils/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/shared/utils/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/shared/utils/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/state/util-queries/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/.babelrc -------------------------------------------------------------------------------- /libs/state/util-queries/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/.eslintrc.json -------------------------------------------------------------------------------- /libs/state/util-queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/README.md -------------------------------------------------------------------------------- /libs/state/util-queries/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/jest.config.ts -------------------------------------------------------------------------------- /libs/state/util-queries/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/project.json -------------------------------------------------------------------------------- /libs/state/util-queries/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/src/index.ts -------------------------------------------------------------------------------- /libs/state/util-queries/src/lib/queries/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/src/lib/queries/queries.ts -------------------------------------------------------------------------------- /libs/state/util-queries/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/tsconfig.json -------------------------------------------------------------------------------- /libs/state/util-queries/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/state/util-queries/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/libs/state/util-queries/tsconfig.spec.json -------------------------------------------------------------------------------- /migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/migrations.json -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/nginx.conf -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/package.json -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/s.sh -------------------------------------------------------------------------------- /tailwind-workspace-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/tailwind-workspace-preset.js -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Qovery/console/HEAD/yarn.lock --------------------------------------------------------------------------------