├── .claude ├── commands │ └── pr-review-prioritizer.md └── memories │ ├── add_extension_metadata.md │ ├── ci-e2e-testing.md │ ├── managing-ai-rules.md │ └── playwright-locators.md ├── .cursor ├── commands │ └── pr-review-prioritizer.md └── rules │ ├── add_extension_metadata.mdc │ ├── ci-e2e-testing.mdc │ ├── managing-ai-rules.mdc │ └── playwright-locators.mdc ├── .cursorignore ├── .dockerignore ├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── README.workflows.adoc ├── actions │ ├── check-author │ │ └── action.yaml │ ├── check-image-and-changes │ │ └── action.yaml │ ├── docker-build │ │ └── action.yaml │ └── get-sha │ │ └── action.yml ├── renovate.json └── workflows │ ├── auto-approve-bot-prs.yaml │ ├── bash-e2e-lint.yaml │ ├── cache-cleanup.yaml │ ├── codeql.yaml │ ├── e2e-tests-lint.yaml │ ├── link-checker.config.json │ ├── link-checker.yaml │ ├── next-build-image.yaml │ ├── on-new-issue.yaml │ ├── pr-build-image.yaml │ ├── pr-podman-push.yaml │ ├── pr-semantic.yaml │ ├── pr.yaml │ ├── push-e2e-runner.yaml │ ├── renovate-checks.yaml │ ├── rulesync-check.yaml │ ├── stale.yaml │ ├── sync-owners-aliases.yaml │ ├── toml-checks.yaml │ ├── update-backstage.yaml │ ├── update-dynamic-plugins-default.yaml │ ├── update-rpm-lockfile.yaml │ └── update-versions.yaml ├── .gitignore ├── .husky ├── post-checkout ├── post-merge ├── post-rewrite ├── pre-commit └── scripts │ └── sync-node-modules ├── .ibm ├── .lintstagedrc.json ├── .prettierrc.js ├── OWNERS ├── images │ ├── Dockerfile │ └── README ├── manual-tests │ └── postgres │ │ ├── README.md │ │ ├── install.sh │ │ ├── postgres-crt-secrets.yaml │ │ ├── postgress-cred-secret.yaml │ │ └── values.yaml ├── package.json ├── pipelines │ ├── README.md │ ├── auth │ │ ├── secrets-rhdh-secrets.yaml │ │ └── service-account-rhdh-secret.yaml │ ├── cleanup.sh │ ├── cluster │ │ ├── aks │ │ │ ├── aks-helm-deployment.sh │ │ │ ├── aks-operator-deployment.sh │ │ │ ├── auto-label │ │ │ │ └── create-azure-tag-policy.sh │ │ │ ├── manifest │ │ │ │ └── aks-operator-ingress.yaml │ │ │ └── patch │ │ │ │ └── aks-spot-patch.yaml │ │ ├── eks │ │ │ ├── aws.sh │ │ │ ├── eks-helm-deployment.sh │ │ │ ├── eks-operator-deployment.sh │ │ │ └── manifest │ │ │ │ └── eks-operator-ingress.yaml │ │ ├── gke │ │ │ ├── auto-label │ │ │ │ ├── README.md │ │ │ │ ├── apply-labels-manual.sh │ │ │ │ ├── deploy-auto-labeler.sh │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── gcloud.sh │ │ │ ├── gke-helm-deployment.sh │ │ │ ├── gke-operator-deployment.sh │ │ │ ├── manifest.sh │ │ │ └── manifest │ │ │ │ ├── frontend-config.yaml │ │ │ │ └── gke-operator-ingress.yaml │ │ ├── ibm │ │ │ └── create-openshift-cluster.sh │ │ ├── k8s │ │ │ └── k8s-utils.sh │ │ └── osd-gcp │ │ │ ├── README.md │ │ │ ├── create-osd.sh │ │ │ └── destroy-osd.sh │ ├── env_variables.sh │ ├── install-methods │ │ ├── helm.sh │ │ └── operator.sh │ ├── jobs │ │ ├── aks-helm.sh │ │ ├── aks-operator.sh │ │ ├── auth-providers.sh │ │ ├── eks-helm.sh │ │ ├── eks-operator.sh │ │ ├── gke-helm.sh │ │ ├── gke-operator.sh │ │ ├── ocp-nightly.sh │ │ ├── ocp-operator.sh │ │ ├── ocp-pull.sh │ │ └── upgrade.sh │ ├── lib │ │ └── log.sh │ ├── ocp-cluster-claim-login.sh │ ├── openshift-ci-tests.sh │ ├── reporting.sh │ ├── resources │ │ ├── cluster_role │ │ │ └── cluster-role-k8s.yaml │ │ ├── cluster_role_binding │ │ │ └── cluster-role-binding-k8s.yaml │ │ ├── config_map │ │ │ ├── app-config-rhdh-rbac.yaml │ │ │ ├── app-config-rhdh.yaml │ │ │ ├── dynamic-global-floating-action-button-config.yaml │ │ │ ├── dynamic-global-header-config.yaml │ │ │ ├── dynamic-plugins-config.yaml │ │ │ └── rbac-policy.csv │ │ ├── pipeline-run │ │ │ ├── hello-world-pipeline-run.yaml │ │ │ ├── hello-world-pipeline.yaml │ │ │ └── pipelines-operator.yaml │ │ ├── postgres-db │ │ │ ├── dynamic-plugins-root-PVC.yaml │ │ │ ├── postgres-cred.yaml │ │ │ ├── postgres.yaml │ │ │ ├── rds-app-config.yaml │ │ │ └── values-showcase-postgres.yaml │ │ ├── redis-cache │ │ │ ├── redis-deployment.yaml │ │ │ └── redis-secret.yaml │ │ ├── rhdh-operator │ │ │ ├── rhdh-start-rbac.yaml │ │ │ ├── rhdh-start-rbac_K8s.yaml │ │ │ ├── rhdh-start-runtime.yaml │ │ │ ├── rhdh-start.yaml │ │ │ └── rhdh-start_K8s.yaml │ │ ├── service_account │ │ │ └── service-account-rhdh.yaml │ │ └── topology_test │ │ │ ├── topology-test-ingress.yaml │ │ │ ├── topology-test-route.yaml │ │ │ └── topology-test.yaml │ ├── utils.sh │ └── value_files │ │ ├── diff-values_showcase-rbac_AKS.yaml │ │ ├── diff-values_showcase-rbac_EKS.yaml │ │ ├── diff-values_showcase-rbac_GKE.yaml │ │ ├── diff-values_showcase-rbac_OSD-GCP.yaml │ │ ├── diff-values_showcase-sanity-plugins.yaml │ │ ├── diff-values_showcase_AKS.yaml │ │ ├── diff-values_showcase_EKS.yaml │ │ ├── diff-values_showcase_GKE.yaml │ │ ├── diff-values_showcase_OSD-GCP.yaml │ │ ├── diff-values_showcase_upgrade.yaml │ │ ├── values_showcase-auth-providers.yaml │ │ ├── values_showcase-rbac.yaml │ │ └── values_showcase.yaml ├── turbo.json └── yarn.lock ├── .lintstagedrc.cjs ├── .nvm └── releases │ ├── README.adoc │ ├── node-v22.16.0-headers.tar.gz │ └── node-v22.19.0-headers.tar.gz ├── .nvmrc ├── .pr_agent.toml ├── .prettierignore ├── .rhdh └── docker │ ├── .gitignore │ ├── Dockerfile │ └── README.adoc ├── .rulesync ├── README.md ├── commands │ └── pr-review-prioritizer.md └── rules │ ├── add_extension_metadata.md │ ├── ci-e2e-testing.md │ ├── managing-ai-rules.md │ └── playwright-locators.md ├── .rulesyncignore ├── .sonarcloud.properties ├── .vscode └── extensions.json ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.8.7.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── DCO ├── LICENSE ├── OWNERS ├── OWNERS_ALIASES ├── README.md ├── app-config.dynamic-plugins.yaml ├── app-config.example.production.yaml ├── app-config.example.yaml ├── app-config.production.yaml ├── app-config.yaml ├── backstage.json ├── catalog-entities ├── all.yaml ├── apis.yaml ├── apis │ ├── nexus-repo-manager-3.yaml │ ├── nexus-swagger.json │ └── petstore.yaml ├── components.yaml ├── components │ └── showcase.yaml ├── e2e-test-resources │ └── rbac-transitive-parent-ownership.yaml ├── groups.yaml ├── groups │ ├── janus-authors.yaml │ └── rhdh-team.yaml ├── marketplace │ └── README.md ├── resources.yaml ├── resources │ ├── argocd.yaml │ ├── github.yaml │ ├── keycloak.yaml │ ├── obc.yaml │ └── pgdb.yaml ├── systems.yaml └── systems │ └── janus-idp.yaml ├── catalog-info.yaml ├── default.packages.yaml ├── docker ├── Dockerfile ├── README.adoc ├── install-dynamic-plugins.py ├── install-dynamic-plugins.sh ├── pytest.ini └── test_install-dynamic-plugins.py ├── docs ├── audit-log.md ├── auth.md ├── configuration-env-variables.md ├── configuration_files │ ├── ama-metrics-prometheus-config.yaml │ ├── ama-metrics-settings-configmap.yaml │ └── container-azm-ms-agentconfig.yaml ├── corporate-proxy.md ├── customization.md ├── dynamic-plugins │ ├── debugging.md │ ├── examples.md │ ├── export-derived-package.md │ ├── frontend-plugin-wiring.md │ ├── index.md │ ├── installing-plugins.md │ ├── known-issues.md │ ├── local.md │ ├── override-core-services.md │ ├── packaging-dynamic-plugins.md │ ├── versions.md │ └── wrapping-plugins.md ├── e2e-tests │ ├── CI.md │ ├── CONTRIBUTING.MD │ ├── README.md │ ├── e2e-i18n-guide.md │ ├── enhanced-ci-reporting.md │ ├── examples.md │ └── playwright-locator-best-practices.md ├── helm-chart.md ├── images │ ├── allowed_scopes_ping_identity_app.png │ ├── custom-title-and-favicon.png │ ├── default-collapsed-icon.png │ ├── default-expanded-logo.png │ ├── example-dark-mode-banner.png │ ├── example-dark-mode-primary-color.png │ ├── example-light-mode-banner.png │ ├── example-light-mode-primary-color.png │ ├── example-sidebar-indicator-dark.png │ ├── example-sidebar-indicator-light.png │ ├── example-support-button.png │ ├── github_diagram.svg │ ├── nightly_diagram.svg │ ├── openshift-metrics.png │ ├── ping-identity-grant-app-roles.png │ ├── response_and_grant_type_ping_identity_app.png │ ├── sidebar-search-hidden.png │ └── support-not-configured.png ├── index.md ├── keycloak-quickstart.md ├── logging.md ├── patch-package.md ├── ping-identity-env-setup.md ├── ping-identity-oidc-setup.md ├── proxy.md ├── redis-setup.md └── rhdh-quickstart-script.md ├── dynamic-plugins-root └── .gitkeep ├── dynamic-plugins.default.yaml ├── dynamic-plugins ├── .yarn │ └── patches │ │ ├── @backstage-plugin-auth-node-npm-0.6.0-69f2f0dc3f.patch │ │ └── @backstage-plugin-home-npm-0.8.12-0d7fbcc764.patch ├── _utils │ ├── .eslintrc.js │ ├── copy-plugins.js │ ├── package.json │ └── src │ │ └── wrappers.test.ts ├── backstage.json ├── package.json ├── turbo.json ├── wrappers │ ├── OWNERS │ ├── backstage-community-plugin-3scale-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-acr │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-analytics-provider-segment │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-azure-devops-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-azure-devops │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-catalog-backend-module-keycloak-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-catalog-backend-module-pingidentity-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-dynatrace │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-github-actions │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-github-issues │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-jenkins-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-jenkins │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-jfrog-artifactory │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-lighthouse │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-nexus-repository-manager │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-ocm-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-ocm │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-quay │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-rbac │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── alpha.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-redhat-argocd │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── alpha.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-scaffolder-backend-module-kubernetes-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-scaffolder-backend-module-quay-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-scaffolder-backend-module-regex-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-scaffolder-backend-module-servicenow-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-scaffolder-backend-module-sonarqube-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-sonarqube-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-sonarqube │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-tech-radar-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-tech-radar │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-tekton │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-community-plugin-topology │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── alpha.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-catalog-backend-module-bitbucket-cloud-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-catalog-backend-module-bitbucket-server-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-catalog-backend-module-github-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-catalog-backend-module-github-org-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-catalog-backend-module-gitlab-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-catalog-backend-module-gitlab-org-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-catalog-backend-module-ldap-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-catalog-backend-module-msgraph-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-kubernetes-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-kubernetes │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-notifications-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-notifications-backend-module-email-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-notifications │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-scaffolder-backend-module-azure-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-scaffolder-backend-module-bitbucket-cloud-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-scaffolder-backend-module-bitbucket-server-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-scaffolder-backend-module-gerrit-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-scaffolder-backend-module-github-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-scaffolder-backend-module-gitlab-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-signals-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-signals │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-techdocs-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── bundle.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-techdocs-module-addons-contrib │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── ShadowRootStylesProvider.tsx │ │ │ ├── addons.tsx │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── backstage-plugin-techdocs │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ ├── utils.tsx │ │ │ └── wrapped.tsx │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── immobiliarelabs-backstage-plugin-gitlab-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── bundle.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── immobiliarelabs-backstage-plugin-gitlab │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── pagerduty-backstage-plugin-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── pagerduty-backstage-plugin │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── parfuemerie-douglas-scaffolder-backend-module-azure-repositories-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-adoption-insights-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-adoption-insights │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-analytics-module-adoption-insights-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-bulk-import-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-bulk-import │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── alpha.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-catalog-backend-module-marketplace-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-dynamic-home-page │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-global-floating-action-button │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-global-header │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-marketplace-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-marketplace │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── alpha.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── red-hat-developer-hub-backstage-plugin-quickstart │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ ├── alpha.ts │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── roadiehq-backstage-plugin-argo-cd-backend-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── roadiehq-backstage-plugin-datadog │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── roadiehq-backstage-plugin-github-insights │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── roadiehq-backstage-plugin-github-pull-requests │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── roadiehq-backstage-plugin-jira │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── roadiehq-backstage-plugin-security-insights │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── roadiehq-scaffolder-backend-argocd-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ ├── roadiehq-scaffolder-backend-module-http-request-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json │ └── roadiehq-scaffolder-backend-module-utils-dynamic │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── package.json │ │ ├── src │ │ └── index.ts │ │ ├── tsconfig.json │ │ └── turbo.json └── yarn.lock ├── e2e-tests ├── .gitignore ├── .lintstagedrc.js ├── OWNERS ├── README.md ├── eslint.config.js ├── package.json ├── playwright.config.ts ├── playwright │ ├── data │ │ ├── rbac-constants.ts │ │ └── theme-constants.ts │ ├── e2e │ │ ├── audit-log │ │ │ ├── auditor-catalog.spec.ts │ │ │ ├── auditor-rbac.spec.ts │ │ │ ├── log-utils.ts │ │ │ ├── logs.ts │ │ │ └── rbac-test-utils.ts │ │ ├── auth-providers │ │ │ ├── README.md │ │ │ ├── github.spec.ts │ │ │ ├── ldap.spec.ts │ │ │ ├── microsoft.spec.ts │ │ │ └── oidc.spec.ts │ │ ├── catalog-timestamp.spec.ts │ │ ├── configuration-test │ │ │ └── config-map.spec.ts │ │ ├── custom-theme.spec.ts │ │ ├── default-global-header.spec.ts │ │ ├── dynamic-home-page-customization.spec.ts │ │ ├── extensions.spec.ts │ │ ├── external-database │ │ │ ├── verify-tls-config-with-external-azure-db.spec.ts │ │ │ ├── verify-tls-config-with-external-crunchy.spec.ts │ │ │ └── verify-tls-config-with-external-rds.spec.ts │ │ ├── github-discovery.spec.ts │ │ ├── github-happy-path.spec.ts │ │ ├── github-integration-org-fetch.spec.ts │ │ ├── google-signin-happy-path.spec.ts │ │ ├── guest-signin-happy-path.spec.ts │ │ ├── header-mount-points.spec.ts │ │ ├── home-page-customization.spec.ts │ │ ├── instance-health-check.spec.ts │ │ ├── learning-path-page.spec.ts │ │ ├── localization │ │ │ └── locale.ts │ │ ├── plugins │ │ │ ├── acr.spec.ts │ │ │ ├── adoption-insights │ │ │ │ └── adoption-insights.spec.ts │ │ │ ├── analytics │ │ │ │ ├── analytics-disabled-rbac.spec.ts │ │ │ │ └── analytics-enabled.spec.ts │ │ │ ├── application-listener.spec.ts │ │ │ ├── application-provider.spec.ts │ │ │ ├── bulk-import.spec.ts │ │ │ ├── frontend │ │ │ │ └── sidebar.spec.ts │ │ │ ├── gitlab │ │ │ │ └── gitlab-discovery.spec.ts │ │ │ ├── global-floating-button.spec.ts │ │ │ ├── http-request.spec.ts │ │ │ ├── keycloak │ │ │ │ └── catalog-users.spec.ts │ │ │ ├── kubernetes-actions │ │ │ │ └── kubernetes-actions.spec.ts │ │ │ ├── kubernetes │ │ │ │ └── kubernetes-rbac.spec.ts │ │ │ ├── licensed-users-info-backend │ │ │ │ └── licensed-users-info.spec.ts │ │ │ ├── middleware.spec.ts │ │ │ ├── notifications │ │ │ │ ├── filter-notifications-by-severity.spec.ts │ │ │ │ └── mark-notifications.spec.ts │ │ │ ├── orchestrator │ │ │ │ ├── greeting-workflow.spec.ts │ │ │ │ └── workflow-all-runs-validations.spec.ts │ │ │ ├── quay │ │ │ │ ├── quay-actions.spec.ts │ │ │ │ └── quay.spec.ts │ │ │ ├── quick-access-and-tech-radar.spec.ts │ │ │ ├── quick-start.spec.ts │ │ │ ├── rbac │ │ │ │ └── rbac.spec.ts │ │ │ ├── scorecard │ │ │ │ └── scorecard.spec.ts │ │ │ ├── tekton │ │ │ │ └── tekton.spec.ts │ │ │ ├── topology │ │ │ │ ├── topology-rbac.spec.ts │ │ │ │ └── topology.spec.ts │ │ │ └── user-settings-info-card.spec.ts │ │ ├── scaffolder-backend-module-annotator.spec.ts │ │ ├── settings.spec.ts │ │ ├── smoke-test.spec.ts │ │ ├── techdocs.spec.ts │ │ └── verify-redis-cache.spec.ts │ ├── support │ │ ├── api │ │ │ ├── github-structures.ts │ │ │ ├── github.ts │ │ │ ├── notifications-api-structures.ts │ │ │ ├── notifications.ts │ │ │ ├── rbac-api-structures.ts │ │ │ ├── rbac-api.ts │ │ │ ├── rhdh-auth-api-hack.ts │ │ │ └── rhdh-auth-hack.ts │ │ ├── page-objects │ │ │ ├── catalog │ │ │ │ └── catalog-users-obj.ts │ │ │ ├── global-fab-po.ts │ │ │ ├── global-obj.ts │ │ │ ├── page-obj.ts │ │ │ ├── page.ts │ │ │ ├── rbac-po.ts │ │ │ └── scorecard │ │ │ │ ├── component-import-page.ts │ │ │ │ └── scorecard-page.ts │ │ ├── pages │ │ │ ├── adoption-insights.ts │ │ │ ├── bulk-import.ts │ │ │ ├── catalog-import.ts │ │ │ ├── catalog-item.ts │ │ │ ├── catalog.ts │ │ │ ├── extensions.ts │ │ │ ├── home-page-customization.ts │ │ │ ├── home-page.ts │ │ │ ├── kubernetes.ts │ │ │ ├── notifications.ts │ │ │ ├── orchestrator.ts │ │ │ ├── rbac.ts │ │ │ ├── tech-radar.ts │ │ │ ├── topology.ts │ │ │ └── workflows.ts │ │ ├── test-data │ │ │ ├── bulk-import.ts │ │ │ ├── custom-theme.ts │ │ │ ├── dynamic-plugins-info.ts │ │ │ ├── resources.ts │ │ │ └── templates.ts │ │ └── translations │ │ │ └── settings │ │ │ ├── de.ts │ │ │ ├── en.ts │ │ │ ├── fr.ts │ │ │ └── index.ts │ └── utils │ │ ├── accessibility.ts │ │ ├── analytics │ │ └── analytics.ts │ │ ├── api-endpoints.ts │ │ ├── api-helper.ts │ │ ├── authentication-providers │ │ ├── keycloak-helper.ts │ │ ├── msgraph-helper.ts │ │ ├── rhdh-deployment.ts │ │ └── yamls │ │ │ ├── backstage.yaml │ │ │ ├── configmap.yaml │ │ │ ├── dynamic-plugins-config.yaml │ │ │ └── rbac-policy.csv │ │ ├── common.ts │ │ ├── constants.ts │ │ ├── custom-theme │ │ └── theme-verifier.ts │ │ ├── helper.ts │ │ ├── keycloak │ │ ├── group.ts │ │ ├── keycloak.ts │ │ └── user.ts │ │ ├── kube-client.ts │ │ ├── navbar.ts │ │ ├── postgres-config.ts │ │ ├── quay │ │ ├── quay-client.ts │ │ └── quay.ts │ │ ├── scorecard-response-utils.ts │ │ ├── scorecard-utils.ts │ │ ├── tekton │ │ └── tekton.ts │ │ └── ui-helper.ts ├── tsconfig.json └── yarn.lock ├── manifests ├── base │ ├── certificate.yaml │ ├── deployment.yaml │ ├── externalsecret.yaml │ ├── ingress.yaml │ ├── issuer.yaml │ ├── keycloak │ │ ├── certificate.yaml │ │ ├── deploymentconfig.yaml │ │ ├── ingress.yaml │ │ ├── kustomization.yaml │ │ └── service.yaml │ ├── kustomization.yaml │ ├── obc.yaml │ ├── postgres.yaml │ └── service.yaml ├── components │ └── postgres-db │ │ ├── kustomization.yaml │ │ ├── operator-group.yaml │ │ └── sub.yaml └── overlays │ ├── dev │ └── kustomization.yaml │ └── prod │ └── kustomization.yaml ├── mkdocs.yaml ├── package.json ├── packages ├── README.md ├── app-next │ ├── .eslintrc.js │ ├── README.md │ ├── package.json │ ├── public │ │ ├── apple-touch-icon.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── index.html │ │ ├── robots.txt │ │ ├── site.webmanifest │ │ ├── web-app-manifest-192x192.png │ │ └── web-app-manifest-512x512.png │ └── src │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── index.tsx │ │ └── setupTests.ts ├── app │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .lintstagedrc.json │ ├── .prettierignore │ ├── .prettierrc.js │ ├── CHANGELOG.md │ ├── config.d.ts │ ├── package.json │ ├── public │ │ ├── android-chrome-192x192.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-192x192.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── RedHatText-Regular.otf │ │ │ ├── RedHatText-Regular.ttf │ │ │ └── RedHatText-Regular.woff2 │ │ ├── homepage │ │ │ ├── README.md │ │ │ ├── data.json │ │ │ └── icons │ │ │ │ ├── argo-icon-color.svg │ │ │ │ ├── icons8 │ │ │ │ ├── developerhub.png │ │ │ │ ├── devspaces.png │ │ │ │ ├── openshift.png │ │ │ │ ├── registry-editor.png │ │ │ │ ├── safe-out.png │ │ │ │ ├── security-checked.png │ │ │ │ └── system-task.png │ │ │ │ ├── keycloak.svg │ │ │ │ ├── openshift-learning │ │ │ │ ├── 2020_RHD_Coding_imageA@2x.png │ │ │ │ ├── ST-spring-boot_2x.png │ │ │ │ └── hello-kafka.png │ │ │ │ ├── podman_logo.svg │ │ │ │ ├── quay.svg │ │ │ │ └── sonarqube.svg │ │ ├── index.html │ │ ├── learning-paths │ │ │ └── data.json │ │ ├── manifest.json │ │ ├── robots.txt │ │ └── safari-pinned-tab.svg │ ├── src │ │ ├── App.test.tsx │ │ ├── App.tsx │ │ ├── api │ │ │ ├── AuthApiRefs.ts │ │ │ ├── LearningPathApiClient.ts │ │ │ └── index.ts │ │ ├── apis.ts │ │ ├── bootstrap.tsx │ │ ├── build-metadata.json │ │ ├── common.tsx │ │ ├── components │ │ │ ├── AppBase │ │ │ │ ├── AppBase.tsx │ │ │ │ └── index.ts │ │ │ ├── CustomIcons │ │ │ │ └── DeveloperHub.tsx │ │ │ ├── DynamicRoot │ │ │ │ ├── CommonIcons.tsx │ │ │ │ ├── DynamicRoot.test.tsx │ │ │ │ ├── DynamicRoot.tsx │ │ │ │ ├── Loader.tsx │ │ │ │ ├── ScalprumRoot.tsx │ │ │ │ ├── defaultAppComponents.tsx │ │ │ │ └── index.ts │ │ │ ├── ErrorPages │ │ │ │ ├── ErrorPage.tsx │ │ │ │ ├── NotFoundErrorPage.tsx │ │ │ │ ├── errorButtons │ │ │ │ │ ├── ContactSupportButton.tsx │ │ │ │ │ └── GoBackButton.tsx │ │ │ │ └── illustrations │ │ │ │ │ ├── collaboration │ │ │ │ │ ├── collaboration-dark.svg │ │ │ │ │ ├── collaboration-light.svg │ │ │ │ │ └── collaboration.tsx │ │ │ │ │ └── illustration.tsx │ │ │ ├── Root │ │ │ │ ├── ApplicationHeaders.tsx │ │ │ │ ├── ApplicationListener.test.tsx │ │ │ │ ├── ApplicationListener.tsx │ │ │ │ ├── ApplicationProvider.test.tsx │ │ │ │ ├── ApplicationProvider.tsx │ │ │ │ ├── ConfigUpdater.tsx │ │ │ │ ├── CustomSidebarItem.tsx │ │ │ │ ├── LogoFull.tsx │ │ │ │ ├── LogoIcon.tsx │ │ │ │ ├── MenuIcon.tsx │ │ │ │ ├── Root.tsx │ │ │ │ ├── SidebarLogo.test.tsx │ │ │ │ ├── SidebarLogo.tsx │ │ │ │ └── index.ts │ │ │ ├── SignInPage │ │ │ │ └── SignInPage.tsx │ │ │ ├── UserSettings │ │ │ │ ├── GeneralPage.tsx │ │ │ │ ├── InfoCard.test.tsx │ │ │ │ ├── InfoCard.tsx │ │ │ │ └── SettingsPages.tsx │ │ │ ├── catalog │ │ │ │ ├── EntityPage │ │ │ │ │ ├── ApiTabContent.tsx │ │ │ │ │ ├── ContextMenuAwareEntityLayout.tsx │ │ │ │ │ ├── DefinitionTabContent.tsx │ │ │ │ │ ├── DependenciesTabContent.tsx │ │ │ │ │ ├── DiagramTabContent.tsx │ │ │ │ │ ├── DynamicEntityTab.tsx │ │ │ │ │ ├── EntityPage.tsx │ │ │ │ │ ├── OverviewTabContent.tsx │ │ │ │ │ ├── defaultTabs.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── utils.test.tsx │ │ │ │ │ └── utils.tsx │ │ │ │ ├── Grid │ │ │ │ │ ├── Grid.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── filters │ │ │ │ │ ├── CustomCatalogFilters.tsx │ │ │ │ │ ├── CustomEntityTagPicker.test.ts │ │ │ │ │ └── CustomEntityTagPicker.tsx │ │ │ │ ├── translations │ │ │ │ │ ├── catalog-en.ts │ │ │ │ │ └── catalog.ts │ │ │ │ └── utils.tsx │ │ │ ├── learningPaths │ │ │ │ └── LearningPathsPage.tsx │ │ │ └── search │ │ │ │ └── SearchPage.tsx │ │ ├── consts.ts │ │ ├── hooks │ │ │ ├── useLanguagePreference.test.ts │ │ │ ├── useLanguagePreference.ts │ │ │ ├── useLearningPathData.test.ts │ │ │ ├── useLearningPathData.ts │ │ │ ├── useThemedConfig.ts │ │ │ └── useTranslation.ts │ │ ├── index.tsx │ │ ├── setupTests.ts │ │ ├── translations │ │ │ ├── catalog-import │ │ │ │ ├── catalog-import-en.ts │ │ │ │ └── catalog-import.ts │ │ │ ├── core-components │ │ │ │ ├── core-components-en.ts │ │ │ │ └── core-components.ts │ │ │ ├── rhdh │ │ │ │ ├── de.ts │ │ │ │ ├── es.ts │ │ │ │ ├── fr.ts │ │ │ │ ├── index.ts │ │ │ │ ├── it.ts │ │ │ │ └── ref.ts │ │ │ ├── scaffolder │ │ │ │ ├── scaffolder-en.ts │ │ │ │ └── scaffolder.ts │ │ │ ├── search │ │ │ │ ├── search-de.ts │ │ │ │ ├── search-en.ts │ │ │ │ ├── search-es.ts │ │ │ │ ├── search-fr.ts │ │ │ │ ├── search-it.ts │ │ │ │ └── search.ts │ │ │ └── user-settings │ │ │ │ ├── user-settings-de.ts │ │ │ │ ├── user-settings-en.ts │ │ │ │ ├── user-settings-es.ts │ │ │ │ ├── user-settings-fr.ts │ │ │ │ ├── user-settings-it.ts │ │ │ │ └── user-settings.ts │ │ ├── types.d.ts │ │ ├── types │ │ │ └── types.ts │ │ └── utils │ │ │ ├── dynamicUI │ │ │ ├── bindAppRoutes.ts │ │ │ ├── extractDynamicConfig.test.ts │ │ │ ├── extractDynamicConfig.ts │ │ │ ├── extractDynamicConfigFrontend.test.ts │ │ │ ├── extractDynamicConfigFrontend.ts │ │ │ ├── getDynamicRootConfig.ts │ │ │ ├── getMountPointData.ts │ │ │ ├── initializeRemotePlugins.ts │ │ │ └── overrideBaseUrlConfigs.ts │ │ │ ├── language │ │ │ ├── language.test.ts │ │ │ └── language.ts │ │ │ ├── test │ │ │ └── TestRoot.tsx │ │ │ └── translations │ │ │ ├── fetchOverrideTranslations.ts │ │ │ ├── index.ts │ │ │ ├── staticTranslationConfigs.ts │ │ │ ├── translationResourceGenerator.test.ts │ │ │ ├── translationResourceGenerator.ts │ │ │ ├── translationResourceProcessor.ts │ │ │ └── translationUtils.ts │ ├── tsconfig.json │ └── turbo.json ├── backend │ ├── .eslintrc.js │ ├── .lintstagedrc.json │ ├── .prettierignore │ ├── .prettierrc.js │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── prometheus.yml │ ├── src │ │ ├── corporate-proxy.ts │ │ ├── defaultServiceFactories.test.ts │ │ ├── defaultServiceFactories.ts │ │ ├── index.ts │ │ ├── instrumentation.js │ │ ├── modules │ │ │ ├── authProvidersModule.ts │ │ │ ├── healthcheck.ts │ │ │ ├── index.ts │ │ │ ├── rbacDynamicPluginsModule.ts │ │ │ ├── resolverUtils.ts │ │ │ ├── rhdhSignInResolvers.ts │ │ │ └── userSettings.ts │ │ ├── transitiveGroupOwnershipResolver.test.ts │ │ └── transitiveGroupOwnershipResolver.ts │ ├── tsconfig.json │ └── turbo.json ├── plugin-utils │ ├── .eslintrc.js │ ├── .lintstagedrc.json │ ├── .prettierignore │ ├── .prettierrc.js │ ├── README.md │ ├── package.json │ ├── src │ │ ├── context │ │ │ ├── DynamicRootContext.test.tsx │ │ │ ├── DynamicRootContext.tsx │ │ │ └── index.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── useDynamicPlugin.ts │ │ │ ├── useDynamicPlugins.test.tsx │ │ │ ├── useMountPoints.test.tsx │ │ │ └── useMountPoints.ts │ │ ├── index.ts │ │ ├── setupTests.ts │ │ └── types.ts │ ├── tsconfig.json │ └── turbo.json └── theme-wrapper │ └── package.json ├── plugins ├── README.md ├── dynamic-plugins-info-backend │ ├── .eslintrc.js │ ├── .lintstagedrc.json │ ├── .prettierignore │ ├── .prettierrc.js │ ├── README.md │ ├── __fixtures__ │ │ ├── data.ts │ │ └── expected_result.ts │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── plugin.ts │ │ └── service │ │ │ ├── router.test.ts │ │ │ └── router.ts │ ├── tsconfig.json │ └── turbo.json ├── licensed-users-info-backend │ ├── .eslintrc.js │ ├── .lintstagedrc.json │ ├── .prettierignore │ ├── .prettierrc.js │ ├── README.md │ ├── dev │ │ └── index.ts │ ├── package.json │ ├── src │ │ ├── database │ │ │ └── databaseUserInfoStore.ts │ │ ├── index.ts │ │ ├── plugin.ts │ │ ├── service │ │ │ ├── catalogStore.ts │ │ │ ├── readBackstageTokenExpiration.ts │ │ │ ├── router.test.ts │ │ │ └── router.ts │ │ └── setupTests.ts │ ├── tsconfig.json │ └── turbo.json └── scalprum-backend │ ├── .eslintrc.js │ ├── .lintstagedrc.json │ ├── .prettierignore │ ├── .prettierrc.js │ ├── README.md │ ├── package.json │ ├── src │ ├── index.ts │ ├── plugin.ts │ └── service │ │ ├── router.test.ts │ │ └── router.ts │ ├── tsconfig.json │ └── turbo.json ├── python ├── README.requirements.md ├── cachito_hash.sh ├── hermeto_github.json ├── hermeto_gitlab.json ├── requirements-build.in ├── requirements-build.txt ├── requirements-dev.in ├── requirements-dev.txt ├── requirements.in ├── requirements.txt └── setup.py ├── rpms.in.yaml ├── rpms.lock.yaml ├── rulesync.jsonc ├── scripts ├── check_package_yaml_consistency.py ├── generate-index-template.mjs ├── generate-owners-aliases.mjs ├── keycloak-setup │ ├── auth │ │ └── database-secrets.yaml │ ├── database │ │ └── postgres.yaml │ ├── deploy-keycloak.sh │ └── keycloak.yaml ├── patch-package.sh ├── ping-identity-setup │ ├── ping-identity-secrets.env │ └── ping-identity-setup.sh ├── remove_keywords_from_package_json.py ├── rhdh-openshift-setup │ ├── auth │ │ ├── rhdh-secrets.yaml │ │ └── service-account-rhdh-secret.yaml │ ├── quick-start-rhdh.sh │ ├── resources │ │ ├── cluster-roles │ │ │ ├── cluster-role-binding-k8s.yaml │ │ │ └── cluster-role-k8s.yaml │ │ ├── daemon-sets │ │ │ └── daemon-set.yaml │ │ ├── deployments │ │ │ └── backstage-test.yaml │ │ ├── jobs │ │ │ ├── cron-job.yaml │ │ │ └── pi-job.yaml │ │ ├── pipelines │ │ │ ├── hello-world-pipeline-run.yaml │ │ │ └── hello-world-pipeline.yaml │ │ ├── rbac-policies.yaml │ │ ├── rhdh-configmap.yaml │ │ ├── service-account-rhdh.yaml │ │ └── stateful-sets │ │ │ └── stateful-set.yaml │ └── values.yaml ├── update-Dockerfile.sh ├── update-backstage.mjs ├── update-metadata.mjs └── update-versions-doc.mjs ├── test-results └── .last-run.json ├── translations ├── community-plugins_v1.8_s3281-fr-C.json ├── core-plugins_v1.8_s3281-fr-C.json ├── rhdh-plugins__v1.8_s3281-fr-C.json ├── rhdh_v1.8_s3281-fr-C.json └── test │ ├── all-v1.8_s3281-en.json │ └── missing-fr-translations.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.claude/commands/pr-review-prioritizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.claude/commands/pr-review-prioritizer.md -------------------------------------------------------------------------------- /.claude/memories/add_extension_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.claude/memories/add_extension_metadata.md -------------------------------------------------------------------------------- /.claude/memories/ci-e2e-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.claude/memories/ci-e2e-testing.md -------------------------------------------------------------------------------- /.claude/memories/managing-ai-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.claude/memories/managing-ai-rules.md -------------------------------------------------------------------------------- /.claude/memories/playwright-locators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.claude/memories/playwright-locators.md -------------------------------------------------------------------------------- /.cursor/commands/pr-review-prioritizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.cursor/commands/pr-review-prioritizer.md -------------------------------------------------------------------------------- /.cursor/rules/add_extension_metadata.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.cursor/rules/add_extension_metadata.mdc -------------------------------------------------------------------------------- /.cursor/rules/ci-e2e-testing.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.cursor/rules/ci-e2e-testing.mdc -------------------------------------------------------------------------------- /.cursor/rules/managing-ai-rules.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.cursor/rules/managing-ai-rules.mdc -------------------------------------------------------------------------------- /.cursor/rules/playwright-locators.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.cursor/rules/playwright-locators.mdc -------------------------------------------------------------------------------- /.cursorignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/README.workflows.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/README.workflows.adoc -------------------------------------------------------------------------------- /.github/actions/check-author/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/actions/check-author/action.yaml -------------------------------------------------------------------------------- /.github/actions/check-image-and-changes/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/actions/check-image-and-changes/action.yaml -------------------------------------------------------------------------------- /.github/actions/docker-build/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/actions/docker-build/action.yaml -------------------------------------------------------------------------------- /.github/actions/get-sha/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/actions/get-sha/action.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/auto-approve-bot-prs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/auto-approve-bot-prs.yaml -------------------------------------------------------------------------------- /.github/workflows/bash-e2e-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/bash-e2e-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/cache-cleanup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/cache-cleanup.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/e2e-tests-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/e2e-tests-lint.yaml -------------------------------------------------------------------------------- /.github/workflows/link-checker.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/link-checker.config.json -------------------------------------------------------------------------------- /.github/workflows/link-checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/link-checker.yaml -------------------------------------------------------------------------------- /.github/workflows/next-build-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/next-build-image.yaml -------------------------------------------------------------------------------- /.github/workflows/on-new-issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/on-new-issue.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-build-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/pr-build-image.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-podman-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/pr-podman-push.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-semantic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/pr-semantic.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/push-e2e-runner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/push-e2e-runner.yaml -------------------------------------------------------------------------------- /.github/workflows/renovate-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/renovate-checks.yaml -------------------------------------------------------------------------------- /.github/workflows/rulesync-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/rulesync-check.yaml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/sync-owners-aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/sync-owners-aliases.yaml -------------------------------------------------------------------------------- /.github/workflows/toml-checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/toml-checks.yaml -------------------------------------------------------------------------------- /.github/workflows/update-backstage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/update-backstage.yaml -------------------------------------------------------------------------------- /.github/workflows/update-dynamic-plugins-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/update-dynamic-plugins-default.yaml -------------------------------------------------------------------------------- /.github/workflows/update-rpm-lockfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/update-rpm-lockfile.yaml -------------------------------------------------------------------------------- /.github/workflows/update-versions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.github/workflows/update-versions.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.husky/post-checkout -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.husky/post-merge -------------------------------------------------------------------------------- /.husky/post-rewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.husky/post-rewrite -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run lint-staged 5 | -------------------------------------------------------------------------------- /.husky/scripts/sync-node-modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.husky/scripts/sync-node-modules -------------------------------------------------------------------------------- /.ibm/.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/.lintstagedrc.json -------------------------------------------------------------------------------- /.ibm/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/.prettierrc.js -------------------------------------------------------------------------------- /.ibm/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/OWNERS -------------------------------------------------------------------------------- /.ibm/images/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/images/Dockerfile -------------------------------------------------------------------------------- /.ibm/images/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/images/README -------------------------------------------------------------------------------- /.ibm/manual-tests/postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/manual-tests/postgres/README.md -------------------------------------------------------------------------------- /.ibm/manual-tests/postgres/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/manual-tests/postgres/install.sh -------------------------------------------------------------------------------- /.ibm/manual-tests/postgres/postgres-crt-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/manual-tests/postgres/postgres-crt-secrets.yaml -------------------------------------------------------------------------------- /.ibm/manual-tests/postgres/postgress-cred-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/manual-tests/postgres/postgress-cred-secret.yaml -------------------------------------------------------------------------------- /.ibm/manual-tests/postgres/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/manual-tests/postgres/values.yaml -------------------------------------------------------------------------------- /.ibm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/package.json -------------------------------------------------------------------------------- /.ibm/pipelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/README.md -------------------------------------------------------------------------------- /.ibm/pipelines/auth/secrets-rhdh-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/auth/secrets-rhdh-secrets.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/auth/service-account-rhdh-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/auth/service-account-rhdh-secret.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cleanup.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/aks/aks-helm-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/aks/aks-helm-deployment.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/aks/aks-operator-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/aks/aks-operator-deployment.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/aks/auto-label/create-azure-tag-policy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/aks/auto-label/create-azure-tag-policy.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/aks/manifest/aks-operator-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/aks/manifest/aks-operator-ingress.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/aks/patch/aks-spot-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/aks/patch/aks-spot-patch.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/eks/aws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/eks/aws.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/eks/eks-helm-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/eks/eks-helm-deployment.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/eks/eks-operator-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/eks/eks-operator-deployment.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/eks/manifest/eks-operator-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/eks/manifest/eks-operator-ingress.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/auto-label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/auto-label/README.md -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/auto-label/apply-labels-manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/auto-label/apply-labels-manual.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/auto-label/deploy-auto-labeler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/auto-label/deploy-auto-labeler.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/auto-label/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/auto-label/index.js -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/auto-label/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/auto-label/package.json -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/gcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/gcloud.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/gke-helm-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/gke-helm-deployment.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/gke-operator-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/gke-operator-deployment.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/manifest.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/manifest/frontend-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/manifest/frontend-config.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/gke/manifest/gke-operator-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/gke/manifest/gke-operator-ingress.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/ibm/create-openshift-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/ibm/create-openshift-cluster.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/k8s/k8s-utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/k8s/k8s-utils.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/osd-gcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/osd-gcp/README.md -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/osd-gcp/create-osd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/osd-gcp/create-osd.sh -------------------------------------------------------------------------------- /.ibm/pipelines/cluster/osd-gcp/destroy-osd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/cluster/osd-gcp/destroy-osd.sh -------------------------------------------------------------------------------- /.ibm/pipelines/env_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/env_variables.sh -------------------------------------------------------------------------------- /.ibm/pipelines/install-methods/helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/install-methods/helm.sh -------------------------------------------------------------------------------- /.ibm/pipelines/install-methods/operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/install-methods/operator.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/aks-helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/aks-helm.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/aks-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/aks-operator.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/auth-providers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/auth-providers.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/eks-helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/eks-helm.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/eks-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/eks-operator.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/gke-helm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/gke-helm.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/gke-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/gke-operator.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/ocp-nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/ocp-nightly.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/ocp-operator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/ocp-operator.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/ocp-pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/ocp-pull.sh -------------------------------------------------------------------------------- /.ibm/pipelines/jobs/upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/jobs/upgrade.sh -------------------------------------------------------------------------------- /.ibm/pipelines/lib/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/lib/log.sh -------------------------------------------------------------------------------- /.ibm/pipelines/ocp-cluster-claim-login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/ocp-cluster-claim-login.sh -------------------------------------------------------------------------------- /.ibm/pipelines/openshift-ci-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/openshift-ci-tests.sh -------------------------------------------------------------------------------- /.ibm/pipelines/reporting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/reporting.sh -------------------------------------------------------------------------------- /.ibm/pipelines/resources/cluster_role/cluster-role-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/cluster_role/cluster-role-k8s.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/config_map/app-config-rhdh-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/config_map/app-config-rhdh-rbac.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/config_map/app-config-rhdh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/config_map/app-config-rhdh.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/config_map/dynamic-plugins-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/config_map/dynamic-plugins-config.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/config_map/rbac-policy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/config_map/rbac-policy.csv -------------------------------------------------------------------------------- /.ibm/pipelines/resources/pipeline-run/hello-world-pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/pipeline-run/hello-world-pipeline.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/pipeline-run/pipelines-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/pipeline-run/pipelines-operator.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/postgres-db/postgres-cred.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/postgres-db/postgres-cred.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/postgres-db/postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/postgres-db/postgres.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/postgres-db/rds-app-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/postgres-db/rds-app-config.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/redis-cache/redis-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/redis-cache/redis-deployment.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/redis-cache/redis-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/redis-cache/redis-secret.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/rhdh-operator/rhdh-start-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/rhdh-operator/rhdh-start-rbac.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/rhdh-operator/rhdh-start-rbac_K8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/rhdh-operator/rhdh-start-rbac_K8s.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/rhdh-operator/rhdh-start-runtime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/rhdh-operator/rhdh-start-runtime.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/rhdh-operator/rhdh-start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/rhdh-operator/rhdh-start.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/rhdh-operator/rhdh-start_K8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/rhdh-operator/rhdh-start_K8s.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/topology_test/topology-test-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/topology_test/topology-test-ingress.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/topology_test/topology-test-route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/topology_test/topology-test-route.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/resources/topology_test/topology-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/resources/topology_test/topology-test.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/utils.sh -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase-rbac_AKS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/diff-values_showcase-rbac_AKS.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase-rbac_EKS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/diff-values_showcase-rbac_EKS.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase-rbac_GKE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/diff-values_showcase-rbac_GKE.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase-rbac_OSD-GCP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/diff-values_showcase-rbac_OSD-GCP.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase_AKS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/diff-values_showcase_AKS.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase_EKS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/diff-values_showcase_EKS.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase_GKE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/diff-values_showcase_GKE.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase_OSD-GCP.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/diff-values_showcase_OSD-GCP.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/diff-values_showcase_upgrade.yaml: -------------------------------------------------------------------------------- 1 | orchestrator: null 2 | -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/values_showcase-auth-providers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/values_showcase-auth-providers.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/values_showcase-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/values_showcase-rbac.yaml -------------------------------------------------------------------------------- /.ibm/pipelines/value_files/values_showcase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/pipelines/value_files/values_showcase.yaml -------------------------------------------------------------------------------- /.ibm/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/turbo.json -------------------------------------------------------------------------------- /.ibm/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.ibm/yarn.lock -------------------------------------------------------------------------------- /.lintstagedrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.lintstagedrc.cjs -------------------------------------------------------------------------------- /.nvm/releases/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.nvm/releases/README.adoc -------------------------------------------------------------------------------- /.nvm/releases/node-v22.16.0-headers.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.nvm/releases/node-v22.16.0-headers.tar.gz -------------------------------------------------------------------------------- /.nvm/releases/node-v22.19.0-headers.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.nvm/releases/node-v22.19.0-headers.tar.gz -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.20.0 2 | -------------------------------------------------------------------------------- /.pr_agent.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.pr_agent.toml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.prettierignore -------------------------------------------------------------------------------- /.rhdh/docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rhdh/docker/.gitignore -------------------------------------------------------------------------------- /.rhdh/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rhdh/docker/Dockerfile -------------------------------------------------------------------------------- /.rhdh/docker/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rhdh/docker/README.adoc -------------------------------------------------------------------------------- /.rulesync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rulesync/README.md -------------------------------------------------------------------------------- /.rulesync/commands/pr-review-prioritizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rulesync/commands/pr-review-prioritizer.md -------------------------------------------------------------------------------- /.rulesync/rules/add_extension_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rulesync/rules/add_extension_metadata.md -------------------------------------------------------------------------------- /.rulesync/rules/ci-e2e-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rulesync/rules/ci-e2e-testing.md -------------------------------------------------------------------------------- /.rulesync/rules/managing-ai-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rulesync/rules/managing-ai-rules.md -------------------------------------------------------------------------------- /.rulesync/rules/playwright-locators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.rulesync/rules/playwright-locators.md -------------------------------------------------------------------------------- /.rulesyncignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.8.7.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.yarn/releases/yarn-3.8.7.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DCO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/DCO -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/OWNERS -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/README.md -------------------------------------------------------------------------------- /app-config.dynamic-plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/app-config.dynamic-plugins.yaml -------------------------------------------------------------------------------- /app-config.example.production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/app-config.example.production.yaml -------------------------------------------------------------------------------- /app-config.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/app-config.example.yaml -------------------------------------------------------------------------------- /app-config.production.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/app-config.production.yaml -------------------------------------------------------------------------------- /app-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/app-config.yaml -------------------------------------------------------------------------------- /backstage.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.42.5" 3 | } 4 | -------------------------------------------------------------------------------- /catalog-entities/all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/all.yaml -------------------------------------------------------------------------------- /catalog-entities/apis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/apis.yaml -------------------------------------------------------------------------------- /catalog-entities/apis/nexus-repo-manager-3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/apis/nexus-repo-manager-3.yaml -------------------------------------------------------------------------------- /catalog-entities/apis/nexus-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/apis/nexus-swagger.json -------------------------------------------------------------------------------- /catalog-entities/apis/petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/apis/petstore.yaml -------------------------------------------------------------------------------- /catalog-entities/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/components.yaml -------------------------------------------------------------------------------- /catalog-entities/components/showcase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/components/showcase.yaml -------------------------------------------------------------------------------- /catalog-entities/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/groups.yaml -------------------------------------------------------------------------------- /catalog-entities/groups/janus-authors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/groups/janus-authors.yaml -------------------------------------------------------------------------------- /catalog-entities/groups/rhdh-team.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/groups/rhdh-team.yaml -------------------------------------------------------------------------------- /catalog-entities/marketplace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/marketplace/README.md -------------------------------------------------------------------------------- /catalog-entities/resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/resources.yaml -------------------------------------------------------------------------------- /catalog-entities/resources/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/resources/argocd.yaml -------------------------------------------------------------------------------- /catalog-entities/resources/github.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/resources/github.yaml -------------------------------------------------------------------------------- /catalog-entities/resources/keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/resources/keycloak.yaml -------------------------------------------------------------------------------- /catalog-entities/resources/obc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/resources/obc.yaml -------------------------------------------------------------------------------- /catalog-entities/resources/pgdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/resources/pgdb.yaml -------------------------------------------------------------------------------- /catalog-entities/systems.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/systems.yaml -------------------------------------------------------------------------------- /catalog-entities/systems/janus-idp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-entities/systems/janus-idp.yaml -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /default.packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/default.packages.yaml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docker/README.adoc -------------------------------------------------------------------------------- /docker/install-dynamic-plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docker/install-dynamic-plugins.py -------------------------------------------------------------------------------- /docker/install-dynamic-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docker/install-dynamic-plugins.sh -------------------------------------------------------------------------------- /docker/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docker/pytest.ini -------------------------------------------------------------------------------- /docker/test_install-dynamic-plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docker/test_install-dynamic-plugins.py -------------------------------------------------------------------------------- /docs/audit-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/audit-log.md -------------------------------------------------------------------------------- /docs/auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/auth.md -------------------------------------------------------------------------------- /docs/configuration-env-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/configuration-env-variables.md -------------------------------------------------------------------------------- /docs/configuration_files/ama-metrics-prometheus-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/configuration_files/ama-metrics-prometheus-config.yaml -------------------------------------------------------------------------------- /docs/configuration_files/ama-metrics-settings-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/configuration_files/ama-metrics-settings-configmap.yaml -------------------------------------------------------------------------------- /docs/configuration_files/container-azm-ms-agentconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/configuration_files/container-azm-ms-agentconfig.yaml -------------------------------------------------------------------------------- /docs/corporate-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/corporate-proxy.md -------------------------------------------------------------------------------- /docs/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/customization.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/debugging.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/examples.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/export-derived-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/export-derived-package.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/frontend-plugin-wiring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/frontend-plugin-wiring.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/index.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/installing-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/installing-plugins.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/known-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/known-issues.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/local.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/override-core-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/override-core-services.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/packaging-dynamic-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/packaging-dynamic-plugins.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/versions.md -------------------------------------------------------------------------------- /docs/dynamic-plugins/wrapping-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/dynamic-plugins/wrapping-plugins.md -------------------------------------------------------------------------------- /docs/e2e-tests/CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/e2e-tests/CI.md -------------------------------------------------------------------------------- /docs/e2e-tests/CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/e2e-tests/CONTRIBUTING.MD -------------------------------------------------------------------------------- /docs/e2e-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/e2e-tests/README.md -------------------------------------------------------------------------------- /docs/e2e-tests/e2e-i18n-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/e2e-tests/e2e-i18n-guide.md -------------------------------------------------------------------------------- /docs/e2e-tests/enhanced-ci-reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/e2e-tests/enhanced-ci-reporting.md -------------------------------------------------------------------------------- /docs/e2e-tests/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/e2e-tests/examples.md -------------------------------------------------------------------------------- /docs/e2e-tests/playwright-locator-best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/e2e-tests/playwright-locator-best-practices.md -------------------------------------------------------------------------------- /docs/helm-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/helm-chart.md -------------------------------------------------------------------------------- /docs/images/allowed_scopes_ping_identity_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/allowed_scopes_ping_identity_app.png -------------------------------------------------------------------------------- /docs/images/custom-title-and-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/custom-title-and-favicon.png -------------------------------------------------------------------------------- /docs/images/default-collapsed-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/default-collapsed-icon.png -------------------------------------------------------------------------------- /docs/images/default-expanded-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/default-expanded-logo.png -------------------------------------------------------------------------------- /docs/images/example-dark-mode-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/example-dark-mode-banner.png -------------------------------------------------------------------------------- /docs/images/example-dark-mode-primary-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/example-dark-mode-primary-color.png -------------------------------------------------------------------------------- /docs/images/example-light-mode-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/example-light-mode-banner.png -------------------------------------------------------------------------------- /docs/images/example-light-mode-primary-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/example-light-mode-primary-color.png -------------------------------------------------------------------------------- /docs/images/example-sidebar-indicator-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/example-sidebar-indicator-dark.png -------------------------------------------------------------------------------- /docs/images/example-sidebar-indicator-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/example-sidebar-indicator-light.png -------------------------------------------------------------------------------- /docs/images/example-support-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/example-support-button.png -------------------------------------------------------------------------------- /docs/images/github_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/github_diagram.svg -------------------------------------------------------------------------------- /docs/images/nightly_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/nightly_diagram.svg -------------------------------------------------------------------------------- /docs/images/openshift-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/openshift-metrics.png -------------------------------------------------------------------------------- /docs/images/ping-identity-grant-app-roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/ping-identity-grant-app-roles.png -------------------------------------------------------------------------------- /docs/images/response_and_grant_type_ping_identity_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/response_and_grant_type_ping_identity_app.png -------------------------------------------------------------------------------- /docs/images/sidebar-search-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/sidebar-search-hidden.png -------------------------------------------------------------------------------- /docs/images/support-not-configured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/images/support-not-configured.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/keycloak-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/keycloak-quickstart.md -------------------------------------------------------------------------------- /docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/logging.md -------------------------------------------------------------------------------- /docs/patch-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/patch-package.md -------------------------------------------------------------------------------- /docs/ping-identity-env-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/ping-identity-env-setup.md -------------------------------------------------------------------------------- /docs/ping-identity-oidc-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/ping-identity-oidc-setup.md -------------------------------------------------------------------------------- /docs/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/proxy.md -------------------------------------------------------------------------------- /docs/redis-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/redis-setup.md -------------------------------------------------------------------------------- /docs/rhdh-quickstart-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/docs/rhdh-quickstart-script.md -------------------------------------------------------------------------------- /dynamic-plugins-root/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dynamic-plugins.default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins.default.yaml -------------------------------------------------------------------------------- /dynamic-plugins/_utils/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/_utils/copy-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/_utils/copy-plugins.js -------------------------------------------------------------------------------- /dynamic-plugins/_utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/_utils/package.json -------------------------------------------------------------------------------- /dynamic-plugins/_utils/src/wrappers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/_utils/src/wrappers.test.ts -------------------------------------------------------------------------------- /dynamic-plugins/backstage.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.42.5" 3 | } 4 | -------------------------------------------------------------------------------- /dynamic-plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/package.json -------------------------------------------------------------------------------- /dynamic-plugins/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/turbo.json -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/OWNERS -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-3scale-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-3scale-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage-community/plugin-3scale-backend'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-acr/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-analytics-provider-segment/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-analytics-provider-segment/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "@backstage-community/plugin-analytics-provider-segment"; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-azure-devops-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-azure-devops-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage-community/plugin-azure-devops-backend'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-azure-devops/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-azure-devops/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@backstage-community/plugin-azure-devops'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-catalog-backend-module-keycloak-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-dynatrace/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-dynatrace/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@backstage-community/plugin-dynatrace'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-github-actions/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-github-actions/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@backstage-community/plugin-github-actions'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-github-issues/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-github-issues/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@backstage-community/plugin-github-issues'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-jenkins-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-jenkins-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage-community/plugin-jenkins-backend'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-jenkins/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-jenkins/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@backstage-community/plugin-jenkins'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-jfrog-artifactory/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-lighthouse/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-nexus-repository-manager/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-ocm-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-ocm-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage-community/plugin-ocm-backend'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-ocm/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-quay/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-rbac/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-rbac/src/alpha.ts: -------------------------------------------------------------------------------- 1 | export * from '@backstage-community/plugin-rbac/alpha'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-redhat-argocd/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-redhat-argocd/src/alpha.ts: -------------------------------------------------------------------------------- 1 | export * from '@backstage-community/plugin-redhat-argocd/alpha'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-sonarqube-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-sonarqube-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage-community/plugin-sonarqube-backend'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-sonarqube/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-sonarqube/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@backstage-community/plugin-sonarqube'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-tech-radar-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-tech-radar-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage-community/plugin-tech-radar-backend'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-tech-radar/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-tekton/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-topology/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-community-plugin-topology/src/alpha.ts: -------------------------------------------------------------------------------- 1 | export * from "@backstage-community/plugin-topology/alpha"; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-bitbucket-cloud-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-bitbucket-server-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-github-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-github-org-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-gitlab-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-gitlab-org-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-ldap-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-ldap-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage/plugin-catalog-backend-module-ldap'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-catalog-backend-module-msgraph-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-kubernetes-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-kubernetes-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage/plugin-kubernetes-backend'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-kubernetes/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-kubernetes/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-kubernetes/turbo.json -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-notifications-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-notifications-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage/plugin-notifications-backend'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-notifications-backend-module-email-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-notifications/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-scaffolder-backend-module-azure-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-scaffolder-backend-module-gerrit-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-scaffolder-backend-module-github-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-scaffolder-backend-module-gitlab-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-signals-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-signals-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@backstage/plugin-signals-backend'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-signals/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-signals/.eslintignore -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-signals/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-signals/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-signals/package.json -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-signals/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-signals/src/index.ts -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-signals/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-signals/tsconfig.json -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-signals/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-signals/turbo.json -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-techdocs-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-techdocs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-techdocs/.eslintrc.js -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-techdocs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-techdocs/package.json -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-techdocs/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-techdocs/src/index.ts -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-techdocs/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-techdocs/src/types.ts -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/backstage-plugin-techdocs/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/backstage-plugin-techdocs/turbo.json -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/immobiliarelabs-backstage-plugin-gitlab-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/immobiliarelabs-backstage-plugin-gitlab/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/immobiliarelabs-backstage-plugin-gitlab/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@immobiliarelabs/backstage-plugin-gitlab'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/pagerduty-backstage-plugin-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/pagerduty-backstage-plugin/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/pagerduty-backstage-plugin/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@pagerduty/backstage-plugin'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/pagerduty-backstage-plugin/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/wrappers/pagerduty-backstage-plugin/turbo.json -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/red-hat-developer-hub-backstage-plugin-adoption-insights/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@backstage/cli/config/eslint-factory")(__dirname); -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/red-hat-developer-hub-backstage-plugin-bulk-import/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/red-hat-developer-hub-backstage-plugin-bulk-import/src/alpha.ts: -------------------------------------------------------------------------------- 1 | export * from '@red-hat-developer-hub/backstage-plugin-bulk-import/alpha'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/red-hat-developer-hub-backstage-plugin-dynamic-home-page/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/red-hat-developer-hub-backstage-plugin-global-header/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@backstage/cli/config/eslint-factory")(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/red-hat-developer-hub-backstage-plugin-marketplace/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@backstage/cli/config/eslint-factory")(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/red-hat-developer-hub-backstage-plugin-quickstart/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require("@backstage/cli/config/eslint-factory")(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-argo-cd-backend-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-argo-cd-backend-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "@roadiehq/backstage-plugin-argo-cd-backend"; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-datadog/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-datadog/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@roadiehq/backstage-plugin-datadog'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-github-insights/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-github-insights/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@roadiehq/backstage-plugin-github-insights'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-github-pull-requests/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-github-pull-requests/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@roadiehq/backstage-plugin-github-pull-requests'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-jira/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-jira/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@roadiehq/backstage-plugin-jira'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-security-insights/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-backstage-plugin-security-insights/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@roadiehq/backstage-plugin-security-insights'; 2 | 3 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-scaffolder-backend-argocd-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-scaffolder-backend-argocd-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from '@roadiehq/scaffolder-backend-argocd'; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-scaffolder-backend-module-http-request-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-scaffolder-backend-module-utils-dynamic/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /dynamic-plugins/wrappers/roadiehq-scaffolder-backend-module-utils-dynamic/src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "@roadiehq/scaffolder-backend-module-utils"; 2 | -------------------------------------------------------------------------------- /dynamic-plugins/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/dynamic-plugins/yarn.lock -------------------------------------------------------------------------------- /e2e-tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/.gitignore -------------------------------------------------------------------------------- /e2e-tests/.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/.lintstagedrc.js -------------------------------------------------------------------------------- /e2e-tests/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/OWNERS -------------------------------------------------------------------------------- /e2e-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/README.md -------------------------------------------------------------------------------- /e2e-tests/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/eslint.config.js -------------------------------------------------------------------------------- /e2e-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/package.json -------------------------------------------------------------------------------- /e2e-tests/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright.config.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/data/rbac-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/data/rbac-constants.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/data/theme-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/data/theme-constants.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/audit-log/auditor-catalog.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/audit-log/auditor-catalog.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/audit-log/auditor-rbac.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/audit-log/auditor-rbac.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/audit-log/log-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/audit-log/log-utils.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/audit-log/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/audit-log/logs.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/audit-log/rbac-test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/audit-log/rbac-test-utils.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/auth-providers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/auth-providers/README.md -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/auth-providers/github.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/auth-providers/github.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/auth-providers/ldap.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/auth-providers/ldap.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/auth-providers/microsoft.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/auth-providers/microsoft.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/auth-providers/oidc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/auth-providers/oidc.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/catalog-timestamp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/catalog-timestamp.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/configuration-test/config-map.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/configuration-test/config-map.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/custom-theme.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/custom-theme.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/default-global-header.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/default-global-header.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/extensions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/extensions.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/github-discovery.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/github-discovery.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/github-happy-path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/github-happy-path.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/github-integration-org-fetch.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/github-integration-org-fetch.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/google-signin-happy-path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/google-signin-happy-path.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/guest-signin-happy-path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/guest-signin-happy-path.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/header-mount-points.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/header-mount-points.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/home-page-customization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/home-page-customization.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/instance-health-check.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/instance-health-check.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/learning-path-page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/learning-path-page.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/localization/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/localization/locale.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/acr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/acr.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/application-listener.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/application-listener.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/application-provider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/application-provider.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/bulk-import.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/bulk-import.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/frontend/sidebar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/frontend/sidebar.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/global-floating-button.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/global-floating-button.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/http-request.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/http-request.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/keycloak/catalog-users.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/keycloak/catalog-users.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/middleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/middleware.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/quay/quay-actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/quay/quay-actions.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/quay/quay.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/quay/quay.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/quick-start.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/quick-start.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/rbac/rbac.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/rbac/rbac.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/scorecard/scorecard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/scorecard/scorecard.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/tekton/tekton.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/tekton/tekton.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/topology/topology-rbac.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/topology/topology-rbac.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/plugins/topology/topology.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/plugins/topology/topology.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/settings.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/smoke-test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/smoke-test.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/techdocs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/techdocs.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/e2e/verify-redis-cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/e2e/verify-redis-cache.spec.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/api/github-structures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/api/github-structures.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/api/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/api/github.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/api/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/api/notifications.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/api/rbac-api-structures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/api/rbac-api-structures.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/api/rbac-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/api/rbac-api.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/api/rhdh-auth-api-hack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/api/rhdh-auth-api-hack.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/api/rhdh-auth-hack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/api/rhdh-auth-hack.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/page-objects/global-fab-po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/page-objects/global-fab-po.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/page-objects/global-obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/page-objects/global-obj.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/page-objects/page-obj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/page-objects/page-obj.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/page-objects/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/page-objects/page.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/page-objects/rbac-po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/page-objects/rbac-po.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/adoption-insights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/adoption-insights.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/bulk-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/bulk-import.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/catalog-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/catalog-import.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/catalog-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/catalog-item.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/catalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/catalog.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/extensions.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/home-page-customization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/home-page-customization.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/home-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/home-page.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/kubernetes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/kubernetes.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/notifications.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/orchestrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/orchestrator.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/rbac.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/rbac.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/tech-radar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/tech-radar.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/topology.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/topology.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/pages/workflows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/pages/workflows.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/test-data/bulk-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/test-data/bulk-import.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/test-data/custom-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/test-data/custom-theme.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/test-data/dynamic-plugins-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/test-data/dynamic-plugins-info.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/test-data/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/test-data/resources.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/test-data/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/test-data/templates.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/translations/settings/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/translations/settings/de.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/translations/settings/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/translations/settings/en.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/translations/settings/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/translations/settings/fr.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/support/translations/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/support/translations/settings/index.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/accessibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/accessibility.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/analytics/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/analytics/analytics.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/api-endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/api-endpoints.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/api-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/api-helper.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/common.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/constants.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/custom-theme/theme-verifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/custom-theme/theme-verifier.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/helper.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/keycloak/group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/keycloak/group.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/keycloak/keycloak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/keycloak/keycloak.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/keycloak/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/keycloak/user.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/kube-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/kube-client.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/navbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/navbar.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/postgres-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/postgres-config.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/quay/quay-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/quay/quay-client.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/quay/quay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/quay/quay.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/scorecard-response-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/scorecard-response-utils.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/scorecard-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/scorecard-utils.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/tekton/tekton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/tekton/tekton.ts -------------------------------------------------------------------------------- /e2e-tests/playwright/utils/ui-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/playwright/utils/ui-helper.ts -------------------------------------------------------------------------------- /e2e-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/tsconfig.json -------------------------------------------------------------------------------- /e2e-tests/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/e2e-tests/yarn.lock -------------------------------------------------------------------------------- /manifests/base/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/certificate.yaml -------------------------------------------------------------------------------- /manifests/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/deployment.yaml -------------------------------------------------------------------------------- /manifests/base/externalsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/externalsecret.yaml -------------------------------------------------------------------------------- /manifests/base/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/ingress.yaml -------------------------------------------------------------------------------- /manifests/base/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/issuer.yaml -------------------------------------------------------------------------------- /manifests/base/keycloak/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/keycloak/certificate.yaml -------------------------------------------------------------------------------- /manifests/base/keycloak/deploymentconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/keycloak/deploymentconfig.yaml -------------------------------------------------------------------------------- /manifests/base/keycloak/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/keycloak/ingress.yaml -------------------------------------------------------------------------------- /manifests/base/keycloak/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/keycloak/kustomization.yaml -------------------------------------------------------------------------------- /manifests/base/keycloak/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/keycloak/service.yaml -------------------------------------------------------------------------------- /manifests/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/kustomization.yaml -------------------------------------------------------------------------------- /manifests/base/obc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/obc.yaml -------------------------------------------------------------------------------- /manifests/base/postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/postgres.yaml -------------------------------------------------------------------------------- /manifests/base/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/base/service.yaml -------------------------------------------------------------------------------- /manifests/components/postgres-db/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/components/postgres-db/kustomization.yaml -------------------------------------------------------------------------------- /manifests/components/postgres-db/operator-group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/components/postgres-db/operator-group.yaml -------------------------------------------------------------------------------- /manifests/components/postgres-db/sub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/components/postgres-db/sub.yaml -------------------------------------------------------------------------------- /manifests/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /manifests/overlays/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/manifests/overlays/prod/kustomization.yaml -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/package.json -------------------------------------------------------------------------------- /packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/README.md -------------------------------------------------------------------------------- /packages/app-next/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/.eslintrc.js -------------------------------------------------------------------------------- /packages/app-next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/README.md -------------------------------------------------------------------------------- /packages/app-next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/package.json -------------------------------------------------------------------------------- /packages/app-next/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/public/apple-touch-icon.png -------------------------------------------------------------------------------- /packages/app-next/public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/public/favicon-96x96.png -------------------------------------------------------------------------------- /packages/app-next/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/public/favicon.ico -------------------------------------------------------------------------------- /packages/app-next/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/public/favicon.svg -------------------------------------------------------------------------------- /packages/app-next/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/public/index.html -------------------------------------------------------------------------------- /packages/app-next/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | -------------------------------------------------------------------------------- /packages/app-next/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/public/site.webmanifest -------------------------------------------------------------------------------- /packages/app-next/public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /packages/app-next/public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /packages/app-next/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/src/App.test.tsx -------------------------------------------------------------------------------- /packages/app-next/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/src/App.tsx -------------------------------------------------------------------------------- /packages/app-next/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/src/index.tsx -------------------------------------------------------------------------------- /packages/app-next/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app-next/src/setupTests.ts -------------------------------------------------------------------------------- /packages/app/.eslintignore: -------------------------------------------------------------------------------- 1 | public 2 | -------------------------------------------------------------------------------- /packages/app/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/.eslintrc.js -------------------------------------------------------------------------------- /packages/app/.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/.lintstagedrc.json -------------------------------------------------------------------------------- /packages/app/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage 3 | src/build-metadata.json 4 | -------------------------------------------------------------------------------- /packages/app/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/.prettierrc.js -------------------------------------------------------------------------------- /packages/app/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/CHANGELOG.md -------------------------------------------------------------------------------- /packages/app/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/config.d.ts -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/package.json -------------------------------------------------------------------------------- /packages/app/public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /packages/app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/apple-touch-icon.png -------------------------------------------------------------------------------- /packages/app/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/favicon-16x16.png -------------------------------------------------------------------------------- /packages/app/public/favicon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/favicon-192x192.png -------------------------------------------------------------------------------- /packages/app/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/favicon-32x32.png -------------------------------------------------------------------------------- /packages/app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/favicon.ico -------------------------------------------------------------------------------- /packages/app/public/fonts/RedHatText-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/fonts/RedHatText-Regular.otf -------------------------------------------------------------------------------- /packages/app/public/fonts/RedHatText-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/fonts/RedHatText-Regular.ttf -------------------------------------------------------------------------------- /packages/app/public/fonts/RedHatText-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/fonts/RedHatText-Regular.woff2 -------------------------------------------------------------------------------- /packages/app/public/homepage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/README.md -------------------------------------------------------------------------------- /packages/app/public/homepage/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/data.json -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/argo-icon-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/argo-icon-color.svg -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/icons8/developerhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/icons8/developerhub.png -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/icons8/devspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/icons8/devspaces.png -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/icons8/openshift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/icons8/openshift.png -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/icons8/registry-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/icons8/registry-editor.png -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/icons8/safe-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/icons8/safe-out.png -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/icons8/security-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/icons8/security-checked.png -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/icons8/system-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/icons8/system-task.png -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/keycloak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/keycloak.svg -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/podman_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/podman_logo.svg -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/quay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/quay.svg -------------------------------------------------------------------------------- /packages/app/public/homepage/icons/sonarqube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/homepage/icons/sonarqube.svg -------------------------------------------------------------------------------- /packages/app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/index.html -------------------------------------------------------------------------------- /packages/app/public/learning-paths/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/learning-paths/data.json -------------------------------------------------------------------------------- /packages/app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/manifest.json -------------------------------------------------------------------------------- /packages/app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/robots.txt -------------------------------------------------------------------------------- /packages/app/public/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/public/safari-pinned-tab.svg -------------------------------------------------------------------------------- /packages/app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/App.test.tsx -------------------------------------------------------------------------------- /packages/app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/App.tsx -------------------------------------------------------------------------------- /packages/app/src/api/AuthApiRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/api/AuthApiRefs.ts -------------------------------------------------------------------------------- /packages/app/src/api/LearningPathApiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/api/LearningPathApiClient.ts -------------------------------------------------------------------------------- /packages/app/src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/api/index.ts -------------------------------------------------------------------------------- /packages/app/src/apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/apis.ts -------------------------------------------------------------------------------- /packages/app/src/bootstrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/bootstrap.tsx -------------------------------------------------------------------------------- /packages/app/src/build-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/build-metadata.json -------------------------------------------------------------------------------- /packages/app/src/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/common.tsx -------------------------------------------------------------------------------- /packages/app/src/components/AppBase/AppBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/AppBase/AppBase.tsx -------------------------------------------------------------------------------- /packages/app/src/components/AppBase/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './AppBase'; 2 | -------------------------------------------------------------------------------- /packages/app/src/components/CustomIcons/DeveloperHub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/CustomIcons/DeveloperHub.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DynamicRoot/CommonIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/DynamicRoot/CommonIcons.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DynamicRoot/DynamicRoot.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/DynamicRoot/DynamicRoot.test.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DynamicRoot/DynamicRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/DynamicRoot/DynamicRoot.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DynamicRoot/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/DynamicRoot/Loader.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DynamicRoot/ScalprumRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/DynamicRoot/ScalprumRoot.tsx -------------------------------------------------------------------------------- /packages/app/src/components/DynamicRoot/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './ScalprumRoot'; 2 | -------------------------------------------------------------------------------- /packages/app/src/components/ErrorPages/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/ErrorPages/ErrorPage.tsx -------------------------------------------------------------------------------- /packages/app/src/components/ErrorPages/NotFoundErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/ErrorPages/NotFoundErrorPage.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/ApplicationHeaders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/ApplicationHeaders.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/ApplicationListener.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/ApplicationListener.test.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/ApplicationListener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/ApplicationListener.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/ApplicationProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/ApplicationProvider.test.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/ApplicationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/ApplicationProvider.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/ConfigUpdater.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/ConfigUpdater.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/CustomSidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/CustomSidebarItem.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/LogoFull.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/LogoFull.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/LogoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/LogoIcon.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/MenuIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/MenuIcon.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/Root.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/SidebarLogo.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/SidebarLogo.test.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/SidebarLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/SidebarLogo.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Root/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/Root/index.ts -------------------------------------------------------------------------------- /packages/app/src/components/SignInPage/SignInPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/SignInPage/SignInPage.tsx -------------------------------------------------------------------------------- /packages/app/src/components/UserSettings/GeneralPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/UserSettings/GeneralPage.tsx -------------------------------------------------------------------------------- /packages/app/src/components/UserSettings/InfoCard.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/UserSettings/InfoCard.test.tsx -------------------------------------------------------------------------------- /packages/app/src/components/UserSettings/InfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/UserSettings/InfoCard.tsx -------------------------------------------------------------------------------- /packages/app/src/components/UserSettings/SettingsPages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/UserSettings/SettingsPages.tsx -------------------------------------------------------------------------------- /packages/app/src/components/catalog/EntityPage/EntityPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/EntityPage/EntityPage.tsx -------------------------------------------------------------------------------- /packages/app/src/components/catalog/EntityPage/defaultTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/EntityPage/defaultTabs.tsx -------------------------------------------------------------------------------- /packages/app/src/components/catalog/EntityPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/EntityPage/index.tsx -------------------------------------------------------------------------------- /packages/app/src/components/catalog/EntityPage/utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/EntityPage/utils.test.tsx -------------------------------------------------------------------------------- /packages/app/src/components/catalog/EntityPage/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/EntityPage/utils.tsx -------------------------------------------------------------------------------- /packages/app/src/components/catalog/Grid/Grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/Grid/Grid.tsx -------------------------------------------------------------------------------- /packages/app/src/components/catalog/Grid/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './Grid'; 2 | -------------------------------------------------------------------------------- /packages/app/src/components/catalog/translations/catalog-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/translations/catalog-en.ts -------------------------------------------------------------------------------- /packages/app/src/components/catalog/translations/catalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/translations/catalog.ts -------------------------------------------------------------------------------- /packages/app/src/components/catalog/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/catalog/utils.tsx -------------------------------------------------------------------------------- /packages/app/src/components/learningPaths/LearningPathsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/learningPaths/LearningPathsPage.tsx -------------------------------------------------------------------------------- /packages/app/src/components/search/SearchPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/components/search/SearchPage.tsx -------------------------------------------------------------------------------- /packages/app/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/consts.ts -------------------------------------------------------------------------------- /packages/app/src/hooks/useLanguagePreference.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/hooks/useLanguagePreference.test.ts -------------------------------------------------------------------------------- /packages/app/src/hooks/useLanguagePreference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/hooks/useLanguagePreference.ts -------------------------------------------------------------------------------- /packages/app/src/hooks/useLearningPathData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/hooks/useLearningPathData.test.ts -------------------------------------------------------------------------------- /packages/app/src/hooks/useLearningPathData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/hooks/useLearningPathData.ts -------------------------------------------------------------------------------- /packages/app/src/hooks/useThemedConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/hooks/useThemedConfig.ts -------------------------------------------------------------------------------- /packages/app/src/hooks/useTranslation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/hooks/useTranslation.ts -------------------------------------------------------------------------------- /packages/app/src/index.tsx: -------------------------------------------------------------------------------- 1 | import('./bootstrap'); 2 | -------------------------------------------------------------------------------- /packages/app/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /packages/app/src/translations/catalog-import/catalog-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/catalog-import/catalog-import.ts -------------------------------------------------------------------------------- /packages/app/src/translations/rhdh/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/rhdh/de.ts -------------------------------------------------------------------------------- /packages/app/src/translations/rhdh/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/rhdh/es.ts -------------------------------------------------------------------------------- /packages/app/src/translations/rhdh/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/rhdh/fr.ts -------------------------------------------------------------------------------- /packages/app/src/translations/rhdh/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/rhdh/index.ts -------------------------------------------------------------------------------- /packages/app/src/translations/rhdh/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/rhdh/it.ts -------------------------------------------------------------------------------- /packages/app/src/translations/rhdh/ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/rhdh/ref.ts -------------------------------------------------------------------------------- /packages/app/src/translations/scaffolder/scaffolder-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/scaffolder/scaffolder-en.ts -------------------------------------------------------------------------------- /packages/app/src/translations/scaffolder/scaffolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/scaffolder/scaffolder.ts -------------------------------------------------------------------------------- /packages/app/src/translations/search/search-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/search/search-de.ts -------------------------------------------------------------------------------- /packages/app/src/translations/search/search-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/search/search-en.ts -------------------------------------------------------------------------------- /packages/app/src/translations/search/search-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/search/search-es.ts -------------------------------------------------------------------------------- /packages/app/src/translations/search/search-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/search/search-fr.ts -------------------------------------------------------------------------------- /packages/app/src/translations/search/search-it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/search/search-it.ts -------------------------------------------------------------------------------- /packages/app/src/translations/search/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/search/search.ts -------------------------------------------------------------------------------- /packages/app/src/translations/user-settings/user-settings-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/user-settings/user-settings-de.ts -------------------------------------------------------------------------------- /packages/app/src/translations/user-settings/user-settings-en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/user-settings/user-settings-en.ts -------------------------------------------------------------------------------- /packages/app/src/translations/user-settings/user-settings-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/user-settings/user-settings-es.ts -------------------------------------------------------------------------------- /packages/app/src/translations/user-settings/user-settings-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/user-settings/user-settings-fr.ts -------------------------------------------------------------------------------- /packages/app/src/translations/user-settings/user-settings-it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/user-settings/user-settings-it.ts -------------------------------------------------------------------------------- /packages/app/src/translations/user-settings/user-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/translations/user-settings/user-settings.ts -------------------------------------------------------------------------------- /packages/app/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/types.d.ts -------------------------------------------------------------------------------- /packages/app/src/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/types/types.ts -------------------------------------------------------------------------------- /packages/app/src/utils/dynamicUI/bindAppRoutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/dynamicUI/bindAppRoutes.ts -------------------------------------------------------------------------------- /packages/app/src/utils/dynamicUI/extractDynamicConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/dynamicUI/extractDynamicConfig.test.ts -------------------------------------------------------------------------------- /packages/app/src/utils/dynamicUI/extractDynamicConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/dynamicUI/extractDynamicConfig.ts -------------------------------------------------------------------------------- /packages/app/src/utils/dynamicUI/getDynamicRootConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/dynamicUI/getDynamicRootConfig.ts -------------------------------------------------------------------------------- /packages/app/src/utils/dynamicUI/getMountPointData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/dynamicUI/getMountPointData.ts -------------------------------------------------------------------------------- /packages/app/src/utils/dynamicUI/initializeRemotePlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/dynamicUI/initializeRemotePlugins.ts -------------------------------------------------------------------------------- /packages/app/src/utils/dynamicUI/overrideBaseUrlConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/dynamicUI/overrideBaseUrlConfigs.ts -------------------------------------------------------------------------------- /packages/app/src/utils/language/language.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/language/language.test.ts -------------------------------------------------------------------------------- /packages/app/src/utils/language/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/language/language.ts -------------------------------------------------------------------------------- /packages/app/src/utils/test/TestRoot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/test/TestRoot.tsx -------------------------------------------------------------------------------- /packages/app/src/utils/translations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/translations/index.ts -------------------------------------------------------------------------------- /packages/app/src/utils/translations/staticTranslationConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/translations/staticTranslationConfigs.ts -------------------------------------------------------------------------------- /packages/app/src/utils/translations/translationUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/src/utils/translations/translationUtils.ts -------------------------------------------------------------------------------- /packages/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/tsconfig.json -------------------------------------------------------------------------------- /packages/app/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/app/turbo.json -------------------------------------------------------------------------------- /packages/backend/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /packages/backend/.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/.lintstagedrc.json -------------------------------------------------------------------------------- /packages/backend/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage -------------------------------------------------------------------------------- /packages/backend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/.prettierrc.js -------------------------------------------------------------------------------- /packages/backend/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/CHANGELOG.md -------------------------------------------------------------------------------- /packages/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/README.md -------------------------------------------------------------------------------- /packages/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/package.json -------------------------------------------------------------------------------- /packages/backend/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/prometheus.yml -------------------------------------------------------------------------------- /packages/backend/src/corporate-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/corporate-proxy.ts -------------------------------------------------------------------------------- /packages/backend/src/defaultServiceFactories.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/defaultServiceFactories.test.ts -------------------------------------------------------------------------------- /packages/backend/src/defaultServiceFactories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/defaultServiceFactories.ts -------------------------------------------------------------------------------- /packages/backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/index.ts -------------------------------------------------------------------------------- /packages/backend/src/instrumentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/instrumentation.js -------------------------------------------------------------------------------- /packages/backend/src/modules/authProvidersModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/modules/authProvidersModule.ts -------------------------------------------------------------------------------- /packages/backend/src/modules/healthcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/modules/healthcheck.ts -------------------------------------------------------------------------------- /packages/backend/src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/modules/index.ts -------------------------------------------------------------------------------- /packages/backend/src/modules/rbacDynamicPluginsModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/modules/rbacDynamicPluginsModule.ts -------------------------------------------------------------------------------- /packages/backend/src/modules/resolverUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/modules/resolverUtils.ts -------------------------------------------------------------------------------- /packages/backend/src/modules/rhdhSignInResolvers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/modules/rhdhSignInResolvers.ts -------------------------------------------------------------------------------- /packages/backend/src/modules/userSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/modules/userSettings.ts -------------------------------------------------------------------------------- /packages/backend/src/transitiveGroupOwnershipResolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/transitiveGroupOwnershipResolver.test.ts -------------------------------------------------------------------------------- /packages/backend/src/transitiveGroupOwnershipResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/src/transitiveGroupOwnershipResolver.ts -------------------------------------------------------------------------------- /packages/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/tsconfig.json -------------------------------------------------------------------------------- /packages/backend/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/backend/turbo.json -------------------------------------------------------------------------------- /packages/plugin-utils/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/.eslintrc.js -------------------------------------------------------------------------------- /packages/plugin-utils/.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/.lintstagedrc.json -------------------------------------------------------------------------------- /packages/plugin-utils/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage -------------------------------------------------------------------------------- /packages/plugin-utils/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/.prettierrc.js -------------------------------------------------------------------------------- /packages/plugin-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/README.md -------------------------------------------------------------------------------- /packages/plugin-utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/package.json -------------------------------------------------------------------------------- /packages/plugin-utils/src/context/DynamicRootContext.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/context/DynamicRootContext.test.tsx -------------------------------------------------------------------------------- /packages/plugin-utils/src/context/DynamicRootContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/context/DynamicRootContext.tsx -------------------------------------------------------------------------------- /packages/plugin-utils/src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/context/index.ts -------------------------------------------------------------------------------- /packages/plugin-utils/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/hooks/index.ts -------------------------------------------------------------------------------- /packages/plugin-utils/src/hooks/useDynamicPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/hooks/useDynamicPlugin.ts -------------------------------------------------------------------------------- /packages/plugin-utils/src/hooks/useDynamicPlugins.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/hooks/useDynamicPlugins.test.tsx -------------------------------------------------------------------------------- /packages/plugin-utils/src/hooks/useMountPoints.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/hooks/useMountPoints.test.tsx -------------------------------------------------------------------------------- /packages/plugin-utils/src/hooks/useMountPoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/hooks/useMountPoints.ts -------------------------------------------------------------------------------- /packages/plugin-utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/index.ts -------------------------------------------------------------------------------- /packages/plugin-utils/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /packages/plugin-utils/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/src/types.ts -------------------------------------------------------------------------------- /packages/plugin-utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/tsconfig.json -------------------------------------------------------------------------------- /packages/plugin-utils/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/plugin-utils/turbo.json -------------------------------------------------------------------------------- /packages/theme-wrapper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/packages/theme-wrapper/package.json -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/.lintstagedrc.json -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/.prettierrc.js -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/README.md -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/__fixtures__/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/__fixtures__/data.ts -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/package.json -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/src/index.ts -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/src/plugin.ts -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/src/service/router.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/src/service/router.test.ts -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/src/service/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/src/service/router.ts -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/tsconfig.json -------------------------------------------------------------------------------- /plugins/dynamic-plugins-info-backend/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/dynamic-plugins-info-backend/turbo.json -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/.lintstagedrc.json -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/.prettierrc.js -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/README.md -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/dev/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/dev/index.ts -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/package.json -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/src/index.ts -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/src/plugin.ts -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/src/service/catalogStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/src/service/catalogStore.ts -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/src/service/router.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/src/service/router.test.ts -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/src/service/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/src/service/router.ts -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/src/setupTests.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/tsconfig.json -------------------------------------------------------------------------------- /plugins/licensed-users-info-backend/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/licensed-users-info-backend/turbo.json -------------------------------------------------------------------------------- /plugins/scalprum-backend/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@backstage/cli/config/eslint-factory')(__dirname); 2 | -------------------------------------------------------------------------------- /plugins/scalprum-backend/.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/.lintstagedrc.json -------------------------------------------------------------------------------- /plugins/scalprum-backend/.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | coverage -------------------------------------------------------------------------------- /plugins/scalprum-backend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/.prettierrc.js -------------------------------------------------------------------------------- /plugins/scalprum-backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/README.md -------------------------------------------------------------------------------- /plugins/scalprum-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/package.json -------------------------------------------------------------------------------- /plugins/scalprum-backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/src/index.ts -------------------------------------------------------------------------------- /plugins/scalprum-backend/src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/src/plugin.ts -------------------------------------------------------------------------------- /plugins/scalprum-backend/src/service/router.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/src/service/router.test.ts -------------------------------------------------------------------------------- /plugins/scalprum-backend/src/service/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/src/service/router.ts -------------------------------------------------------------------------------- /plugins/scalprum-backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/tsconfig.json -------------------------------------------------------------------------------- /plugins/scalprum-backend/turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/plugins/scalprum-backend/turbo.json -------------------------------------------------------------------------------- /python/README.requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/README.requirements.md -------------------------------------------------------------------------------- /python/cachito_hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/cachito_hash.sh -------------------------------------------------------------------------------- /python/hermeto_github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/hermeto_github.json -------------------------------------------------------------------------------- /python/hermeto_gitlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/hermeto_gitlab.json -------------------------------------------------------------------------------- /python/requirements-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/requirements-build.in -------------------------------------------------------------------------------- /python/requirements-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/requirements-build.txt -------------------------------------------------------------------------------- /python/requirements-dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/requirements-dev.in -------------------------------------------------------------------------------- /python/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/requirements-dev.txt -------------------------------------------------------------------------------- /python/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/requirements.in -------------------------------------------------------------------------------- /python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/requirements.txt -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/python/setup.py -------------------------------------------------------------------------------- /rpms.in.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/rpms.in.yaml -------------------------------------------------------------------------------- /rpms.lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/rpms.lock.yaml -------------------------------------------------------------------------------- /rulesync.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/rulesync.jsonc -------------------------------------------------------------------------------- /scripts/check_package_yaml_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/check_package_yaml_consistency.py -------------------------------------------------------------------------------- /scripts/generate-index-template.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/generate-index-template.mjs -------------------------------------------------------------------------------- /scripts/generate-owners-aliases.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/generate-owners-aliases.mjs -------------------------------------------------------------------------------- /scripts/keycloak-setup/auth/database-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/keycloak-setup/auth/database-secrets.yaml -------------------------------------------------------------------------------- /scripts/keycloak-setup/database/postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/keycloak-setup/database/postgres.yaml -------------------------------------------------------------------------------- /scripts/keycloak-setup/deploy-keycloak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/keycloak-setup/deploy-keycloak.sh -------------------------------------------------------------------------------- /scripts/keycloak-setup/keycloak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/keycloak-setup/keycloak.yaml -------------------------------------------------------------------------------- /scripts/patch-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/patch-package.sh -------------------------------------------------------------------------------- /scripts/ping-identity-setup/ping-identity-secrets.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/ping-identity-setup/ping-identity-secrets.env -------------------------------------------------------------------------------- /scripts/ping-identity-setup/ping-identity-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/ping-identity-setup/ping-identity-setup.sh -------------------------------------------------------------------------------- /scripts/remove_keywords_from_package_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/remove_keywords_from_package_json.py -------------------------------------------------------------------------------- /scripts/rhdh-openshift-setup/auth/rhdh-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/rhdh-openshift-setup/auth/rhdh-secrets.yaml -------------------------------------------------------------------------------- /scripts/rhdh-openshift-setup/quick-start-rhdh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/rhdh-openshift-setup/quick-start-rhdh.sh -------------------------------------------------------------------------------- /scripts/rhdh-openshift-setup/resources/jobs/cron-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/rhdh-openshift-setup/resources/jobs/cron-job.yaml -------------------------------------------------------------------------------- /scripts/rhdh-openshift-setup/resources/jobs/pi-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/rhdh-openshift-setup/resources/jobs/pi-job.yaml -------------------------------------------------------------------------------- /scripts/rhdh-openshift-setup/resources/rbac-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/rhdh-openshift-setup/resources/rbac-policies.yaml -------------------------------------------------------------------------------- /scripts/rhdh-openshift-setup/resources/rhdh-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/rhdh-openshift-setup/resources/rhdh-configmap.yaml -------------------------------------------------------------------------------- /scripts/rhdh-openshift-setup/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/rhdh-openshift-setup/values.yaml -------------------------------------------------------------------------------- /scripts/update-Dockerfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/update-Dockerfile.sh -------------------------------------------------------------------------------- /scripts/update-backstage.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/update-backstage.mjs -------------------------------------------------------------------------------- /scripts/update-metadata.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/update-metadata.mjs -------------------------------------------------------------------------------- /scripts/update-versions-doc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/scripts/update-versions-doc.mjs -------------------------------------------------------------------------------- /test-results/.last-run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/test-results/.last-run.json -------------------------------------------------------------------------------- /translations/community-plugins_v1.8_s3281-fr-C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/translations/community-plugins_v1.8_s3281-fr-C.json -------------------------------------------------------------------------------- /translations/core-plugins_v1.8_s3281-fr-C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/translations/core-plugins_v1.8_s3281-fr-C.json -------------------------------------------------------------------------------- /translations/rhdh-plugins__v1.8_s3281-fr-C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/translations/rhdh-plugins__v1.8_s3281-fr-C.json -------------------------------------------------------------------------------- /translations/rhdh_v1.8_s3281-fr-C.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/translations/rhdh_v1.8_s3281-fr-C.json -------------------------------------------------------------------------------- /translations/test/all-v1.8_s3281-en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/translations/test/all-v1.8_s3281-en.json -------------------------------------------------------------------------------- /translations/test/missing-fr-translations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/translations/test/missing-fr-translations.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rhdh/HEAD/yarn.lock --------------------------------------------------------------------------------