Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 377 Bytes

readme.md

File metadata and controls

26 lines (23 loc) · 377 Bytes

How to run the project

  1. Create a virtual environment
python3 -m venv venv # Linux
py -m venv venv # Windows
  1. Activate the virtual environment
source venv/bin/activate # Linux
venv\Scripts\activate # Windows
  1. Install the dependencies
pip install -r requirements.txt
  1. Run the project
flask run