python 3
pip 3
virtualenv
npm
-
Create and activate a virtual environment for the application (recommended).
virtualenv venv --python=python3
source venv/bin/activate
-
Install the
pip
packages located inbackend/requirements.txt
.pip3 install -r backend/requirements.txt
-
Copy the
backend/defaults.conf
file tobackend/server.conf
and fill in with the necessary information (replacing--INVALD--
where present). -
Start the backend API server:
python3 backend/app.py
-
Navigate to the frontend directory:
cd frontend
-
Install the necessary
npm
packages:npm install
-
Start the local development server:
npm run serve
a. To lint/test code changes during development, run
npm run lint
ornpm run test
, respectively.