Skip to content

Latest commit

 

History

History

server

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Server setup

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.

Installation

  1. Install dependencies using pip:

    pip install -r requirements.txt
    

Running the Application

  1. Ensure you are in the project directory.

  2. Run the Flask application:

    flask run
    
  3. Open your web browser and visit http://127.0.0.1:5000/ to view the application.