From 4620e2b74ab9a88a47307d85ad0ff65865fcbfe8 Mon Sep 17 00:00:00 2001 From: Theo Sanderson Date: Wed, 10 Jan 2024 16:46:32 +0000 Subject: [PATCH] rename git org --- .github/workflows/backend.yml | 2 +- .github/workflows/dummyPreprocessing.yml | 2 +- .github/workflows/preprocessing-nextclade.yaml | 2 +- .github/workflows/update-argocd-metadata.yml | 2 +- .github/workflows/website.yml | 2 +- README.md | 2 +- kubernetes/README.md | 2 +- kubernetes/appset.yaml | 6 +++--- kubernetes/loculus/templates/loculus-deployment.yaml | 4 ++-- .../loculus/templates/loculus-preprocessing-deployment.yaml | 2 +- website/.eslintrc.cjs | 2 +- website/src/components/ConfirmationDialog.tsx | 2 +- website/src/components/Navigation/SandwichMenu.tsx | 2 +- website/src/hooks/useGroupOperations.ts | 2 +- website/src/layouts/BaseLayout.astro | 2 +- 15 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index c7a1ac6e7f..37244aabd5 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -4,7 +4,7 @@ on: push: env: - DOCKER_IMAGE_NAME: ghcr.io/pathoplexus/backend + DOCKER_IMAGE_NAME: ghcr.io/loculus-project/backend defaults: run: diff --git a/.github/workflows/dummyPreprocessing.yml b/.github/workflows/dummyPreprocessing.yml index 1f8571a0fc..143fca10ae 100644 --- a/.github/workflows/dummyPreprocessing.yml +++ b/.github/workflows/dummyPreprocessing.yml @@ -4,7 +4,7 @@ on: push: env: - DOCKER_IMAGE_NAME: ghcr.io/pathoplexus/preprocessing-dummy + DOCKER_IMAGE_NAME: ghcr.io/loculus-project/preprocessing-dummy defaults: run: diff --git a/.github/workflows/preprocessing-nextclade.yaml b/.github/workflows/preprocessing-nextclade.yaml index 4ede389e1b..8a9b10c479 100644 --- a/.github/workflows/preprocessing-nextclade.yaml +++ b/.github/workflows/preprocessing-nextclade.yaml @@ -4,7 +4,7 @@ on: push: env: - DOCKER_IMAGE_NAME: ghcr.io/pathoplexus/preprocessing-nextclade + DOCKER_IMAGE_NAME: ghcr.io/loculus-project/preprocessing-nextclade defaults: run: diff --git a/.github/workflows/update-argocd-metadata.yml b/.github/workflows/update-argocd-metadata.yml index 404982124a..88a25ccb2a 100644 --- a/.github/workflows/update-argocd-metadata.yml +++ b/.github/workflows/update-argocd-metadata.yml @@ -40,7 +40,7 @@ jobs: - name: Checkout External Repository uses: actions/checkout@v4 with: - repository: 'pathoplexus/argocd_metadata' + repository: 'loculus-project/argocd_metadata' token: ${{ secrets.ARGOCD_METADATA_PAT }} - name: Modify config.json diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index d17a44a3cf..99b2851cb2 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -4,7 +4,7 @@ on: push: env: - DOCKER_IMAGE_NAME: ghcr.io/pathoplexus/website + DOCKER_IMAGE_NAME: ghcr.io/loculus-project/website defaults: run: diff --git a/README.md b/README.md index 1466c79b1e..425eae1e0c 100644 --- a/README.md +++ b/README.md @@ -64,5 +64,5 @@ For testing we added multiple users to the realm. The users are: ## Contributing to Loculus Contributions are very welcome! -Please see [`CONTRIBUTING.md`](https://github.com/pathoplexus/loculus/blob/main/CONTRIBUTING.md) +Please see [`CONTRIBUTING.md`](https://github.com/loculus-project/loculus/blob/main/CONTRIBUTING.md) for more information or ping us in case you need help. diff --git a/kubernetes/README.md b/kubernetes/README.md index eec2338afe..105e7efd1e 100644 --- a/kubernetes/README.md +++ b/kubernetes/README.md @@ -140,7 +140,7 @@ This will return a base64 encoded string similar to the one you can see above th Using Docker desktop as your container runtime won't work on ARM64 macOS. Instead, you will need to use `colima` to run an AMD64 VM which will host AMD64 docker containers. -This will be quite slow due to QEMU emulation but it will work nonetheless (you may need to [adjust timeouts](https://github.com/pathoplexus/loculus/pull/583). +This will be quite slow due to QEMU emulation but it will work nonetheless (you may need to [adjust timeouts](https://github.com/loculus-project/loculus/pull/583). First, install `colima`: diff --git a/kubernetes/appset.yaml b/kubernetes/appset.yaml index fa01857ec3..2c1fba6b06 100644 --- a/kubernetes/appset.yaml +++ b/kubernetes/appset.yaml @@ -9,7 +9,7 @@ spec: generators: - pullRequest: github: - owner: pathoplexus + owner: loculus-project labels: - preview repo: loculus @@ -18,7 +18,7 @@ spec: secretName: github-access-token requeueAfterSeconds: 60 - git: - repoURL: https://github.com/pathoplexus/argocd_metadata.git + repoURL: https://github.com/loculus-project/argocd_metadata.git revision: HEAD files: - path: "config.json" @@ -33,7 +33,7 @@ spec: project: default source: path: 'kubernetes/loculus/' - repoURL: 'https://github.com/pathoplexus/loculus.git' + repoURL: 'https://github.com/loculus-project/loculus.git' targetRevision: '{{.branch}}' helm: parameters: diff --git a/kubernetes/loculus/templates/loculus-deployment.yaml b/kubernetes/loculus/templates/loculus-deployment.yaml index db5282bbe5..77a1e6626a 100644 --- a/kubernetes/loculus/templates/loculus-deployment.yaml +++ b/kubernetes/loculus/templates/loculus-deployment.yaml @@ -22,7 +22,7 @@ spec: containers: {{- if not .Values.disableWebsite }} - name: website - image: "ghcr.io/pathoplexus/website:{{ $dockerTag }}" + image: "ghcr.io/loculus-project/website:{{ $dockerTag }}" imagePullPolicy: Always resources: requests: @@ -51,7 +51,7 @@ spec: {{- end }} {{- if not .Values.disableBackend }} - name: backend - image: "ghcr.io/pathoplexus/backend:{{ $dockerTag }}" + image: "ghcr.io/loculus-project/backend:{{ $dockerTag }}" imagePullPolicy: Always livenessProbe: httpGet: diff --git a/kubernetes/loculus/templates/loculus-preprocessing-deployment.yaml b/kubernetes/loculus/templates/loculus-preprocessing-deployment.yaml index eb09f31756..bb21010f33 100644 --- a/kubernetes/loculus/templates/loculus-preprocessing-deployment.yaml +++ b/kubernetes/loculus/templates/loculus-preprocessing-deployment.yaml @@ -30,7 +30,7 @@ spec: containers: {{- range $key, $_ := $configFile.instances }} - name: preprocessing-{{ $key }} - image: ghcr.io/pathoplexus/preprocessing-dummy:{{ $dockerTag }} + image: ghcr.io/loculus-project/preprocessing-dummy:{{ $dockerTag }} imagePullPolicy: Always args: - "--watch" diff --git a/website/.eslintrc.cjs b/website/.eslintrc.cjs index 157baa01cb..0830b9fcef 100644 --- a/website/.eslintrc.cjs +++ b/website/.eslintrc.cjs @@ -42,7 +42,7 @@ module.exports = { }, { // Prettier is stubborn, need to accept its rules in case of conflict - // See https://github.com/pathoplexus/loculus/pull/283#issuecomment-1733872357 + // See https://github.com/loculus-project/loculus/pull/283#issuecomment-1733872357 files: ['*'], rules: { 'react/self-closing-comp': 'off', diff --git a/website/src/components/ConfirmationDialog.tsx b/website/src/components/ConfirmationDialog.tsx index 145c9af883..0f94ed45ea 100644 --- a/website/src/components/ConfirmationDialog.tsx +++ b/website/src/components/ConfirmationDialog.tsx @@ -19,7 +19,7 @@ export const ConfirmationDialog: FC = ({ dialogText, on
-
diff --git a/website/src/components/Navigation/SandwichMenu.tsx b/website/src/components/Navigation/SandwichMenu.tsx index 1ccfb8f31f..6b6ab3bd67 100644 --- a/website/src/components/Navigation/SandwichMenu.tsx +++ b/website/src/components/Navigation/SandwichMenu.tsx @@ -56,7 +56,7 @@ export const SandwichMenu: FC = ({ top, right, organism, know
- + GitHub logo
diff --git a/website/src/hooks/useGroupOperations.ts b/website/src/hooks/useGroupOperations.ts index d8163a0d3f..1675523481 100644 --- a/website/src/hooks/useGroupOperations.ts +++ b/website/src/hooks/useGroupOperations.ts @@ -87,7 +87,7 @@ export const useGroupPageHooks = ({ export const useGroupManagementClient = (clientConfig: ClientConfig) => { const zodios = useMemo(() => new Zodios(clientConfig.backendUrl, groupManagementApi), [clientConfig]); - const zodiosHooks = useMemo(() => new ZodiosHooks('pathoplexus', zodios), [zodios]); + const zodiosHooks = useMemo(() => new ZodiosHooks('loculus', zodios), [zodios]); return { zodios, zodiosHooks, diff --git a/website/src/layouts/BaseLayout.astro b/website/src/layouts/BaseLayout.astro index 06efcadbb8..aaef486dae 100644 --- a/website/src/layouts/BaseLayout.astro +++ b/website/src/layouts/BaseLayout.astro @@ -55,7 +55,7 @@ const { title } = Astro.props; }
- + github-icon