Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 432 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 432 Bytes

IntegrApp

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