Execute the following commands from the IntegrApp root directory
First set up a virtual environment
python3 -m venv venv
. venv/bin/activateInstall requirements
pip3 install -r server/requirements.txtAdd root module to Python path
cd server/src
export PYTHONPATH=$PYTHONPATH:.srcTo run the DB:
flask --app . init-dbTo run the server:
flask --app . --debug run