diff --git a/Makefile b/Makefile
index 76bdea56..2b0517d8 100644
--- a/Makefile
+++ b/Makefile
@@ -50,7 +50,7 @@ seed:
yarn prisma:seed
clean: db-down
- NODE_VERSION=$(NODE_VERSION) docker volume rm ctrl-next_ctrl-db
+ NODE_VERSION=$(NODE_VERSION) docker volume rm ctrl_ctrl-db
# Local deployment via minikube and helm
diff --git a/README.md b/README.md
index 5307a052..d7040caa 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
Dynamic Consent Management Platform
- [](https://github.com/Garvan-Data-Science-Platform/ctrl-next/actions/workflows/check.yml)
+ [](https://github.com/Garvan-Data-Science-Platform/ctrl/actions/workflows/check.yml)
Participant Portal Demo
@@ -82,7 +82,7 @@ The use of `nvm` to manage node versions is highly recommended. Install `nvm` us
Docker is required to run this project locally to containerise and manage the application's services, including the frontend clients (user-client, admin-client), backend API, and supporting services like PostgreSQL. Each main component has its own Dockerfile for building optimised images, and docker-compose.yml is used to orchestrate local environments, making it easy to spin up, test, and manage dependencies consistently across different setups.
-Then from the root of the `ctrl-next` repository run the following commands:
+Then from the root of the `ctrl` repository run the following commands:
```bash
# Install the required node version, will do nothing if already installed.
@@ -213,6 +213,6 @@ CTRL is also partially funded through [GUARDIANS](https://www.biocommons.org.au/
## Want to contribute?
-Have a look through existing [issues](https://github.com/Garvan-Data-Science-Platform/ctrl-next/issues) for anything that you could help with. If you'd like to request a feature or report a bug, please create a GitHub Issue using one of the templates provided.
+Have a look through existing [issues](https://github.com/Garvan-Data-Science-Platform/ctrl/issues) for anything that you could help with. If you'd like to request a feature or report a bug, please create a GitHub Issue using one of the templates provided.
-[See contribution guide →](https://github.com/Garvan-Data-Science-Platform/ctrl-next/blob/main/docs/CONTRIBUTING.md)
+[See contribution guide →](https://github.com/Garvan-Data-Science-Platform/ctrl/blob/main/docs/CONTRIBUTING.md)
diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md
index e648b3f2..5054e6e6 100644
--- a/docs/CONTRIBUTING.md
+++ b/docs/CONTRIBUTING.md
@@ -1,6 +1,6 @@
-# Guidance for contributing to `ctrl-next`
+# Guidance for contributing to `ctrl`
-- [Guidance for contributing to `ctrl-next`](#guidance-for-contributing-to-ctrl-next)
+- [Guidance for contributing to `ctrl`](#guidance-for-contributing-to-ctrl)
- [Welcome](#welcome)
- [Development Tooling](#development-tooling)
- [Git + GitHub](#git--github)
@@ -38,7 +38,7 @@ Commits in `feature` branches will be squashed when merged into the `dev` branch
Code review helps improve code quality and performance.
## Node.js
-ctrl-next uses a recent Node.js version as specified in `.nvmrc` in combination with the yarn modern package manager through corepack.
+ctrl uses a recent Node.js version as specified in `.nvmrc` in combination with the yarn modern package manager through corepack.
This `.nvmrc` is the single source of truth through out this app to specify the Node Version.
For example: Dockerfiles, `run_tests.sh` scripts, the Makefile and multiple CI workflows all parse the node version from the `.nvmrc`.