This repo contains the frontend of the WCC website.
You’ll need to have Node 14.0.0 or later version on your local development machine
- NodeJS - Install Node from here
NEW: You must add a WCC api url to .env
like so:
$ cat .env
REACT_APP_WCC_API_URL=http://localhost:8000
NOTE: Make sure REACT_APP_WCC_API_URL
is using http
and not https
if
you're running backend locally.
This repo uses React as the frontend. Before starting development, run the following command in the root folder:
cd wcc-frontend
npm install
npm run start
Or for you yarn users 😉 :
cd wcc-frontend
yarn install
yarn run start