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