-
Notifications
You must be signed in to change notification settings - Fork 4
Onboarding
Jeffery edited this page Jun 4, 2025
·
4 revisions
The place to start.
You'll need to have git installed. You can check this by running:
git --versionTo clone this project:
HTTP:
git clone https://github.com/UoaWDCC/uabc-web.gitSSH:
git clone git@github.com:UoaWDCC/uabc-web.gitIt is recommended to use Volta or NVM to manage your Node version. You can install it here:
To install the pinned version of Node.js, we use a .nvmrc file and package.json to keep track of it. Run the following commands to install the version of Node:
NVM:
nvm install
nvm useVolta:
volta install nodeTo install the pinned engine versions:
corepack enableEnsure you have the correct secrets set.
pnpm devOr to run specific applications:
# Run only the frontend
pnpm dev --filter=frontend
# Run only the backend
pnpm dev --filter=backendThe development servers will be running at:
-
Frontend:
http://localhost:3001 -
Backend:
http://localhost:3000