This guide will walk you through setting up a Flask application by installing dependencies listed in the requirements.txt
file and running the Flask server.
-
Install dependencies using pip:
pip install -r requirements.txt
-
Ensure you are in the project directory.
-
Run the Flask application:
flask run
-
Open your web browser and visit http://127.0.0.1:5000/ to view the application.