Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Dynamic Consent Management Platform

[![Build checks](https://github.com/Garvan-Data-Science-Platform/ctrl-next/actions/workflows/check.yml/badge.svg)](https://github.com/Garvan-Data-Science-Platform/ctrl-next/actions/workflows/check.yml)
[![Build checks](https://github.com/Garvan-Data-Science-Platform/ctrl/actions/workflows/check.yml/badge.svg)](https://github.com/Garvan-Data-Science-Platform/ctrl/actions/workflows/check.yml)

<div>
<a href="https://ctrldemo.dsp.garvan.org.au/login"><b>Participant Portal Demo</b></a>
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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 &rarr;](https://github.com/Garvan-Data-Science-Platform/ctrl-next/blob/main/docs/CONTRIBUTING.md)
[See contribution guide &rarr;](https://github.com/Garvan-Data-Science-Platform/ctrl/blob/main/docs/CONTRIBUTING.md)
6 changes: 3 additions & 3 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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`.
Expand Down
Loading