-
Notifications
You must be signed in to change notification settings - Fork 11
Quick Start
Jeremy Asuncion edited this page Jul 3, 2024
·
2 revisions
It's recommended you use NVM so you don't have to manage multiple Node.js versions yourself:
When you have NVM setup, run the following commands:
# cd into data portal frontend directory
cd frontend/
# installs Node.js version defined in `.nvmrc`
nvm install
# uses project defined Node.js version
nvm use
# install pnpm globally
npm -g install pnpm
# install project dependencies
pnpm install
The npm script dev
can be used for starting the data portal dev server:
pnpm dev