The app uses yarn for frontend package management. For the frontend, go to ./frontend
. For the first time, run yarn install
. To start run yarn start
.
To run the backend django app, go to ./networkApi
and run
python -m venv env
[for first time setup]source env/bin/activate
on linux orenv\Scripts\Activate.ps1
on windowspip install -r requirements.txt
python manage.py runserver
.
The express app is not up to date nor is it being actively developed.
To run the backend express app, go to ./api
and run yarn build
and yarn start
.