// Windows
python -m venv venv
venv\Scripts\activate
Linux & macOs
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
pip install mysqlclient
pip install PyPDF2
// Para rodar na porta padrão
flask run --host=0.0.0.0
// Para escolher a porta http
flask run --host=0.0.0.0 --port 5001