python 3pip 3virtualenvnpm
-
Create and activate a virtual environment for the application (recommended).
virtualenv venv --python=python3source venv/bin/activate
-
Install the
pippackages located inbackend/requirements.txt.pip3 install -r backend/requirements.txt
-
Copy the
backend/defaults.conffile tobackend/server.confand 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
npmpackages:npm install -
Start the local development server:
npm run servea. To lint/test code changes during development, run
npm run lintornpm run test, respectively.