Python Flask Web App

Clone the Python Flask App

git clone https://github.com/Azure-Samples/msdocs-python-flask-webapp-quickstart

To run the application locally:

Go to the application folder:

cd msdocs-python-flask-webapp-quickstart

Create a virtual environment for the app:

py -m venv .venv
.venv\scripts\activate

Install the dependencies:

pip install -r requirements.txt

Run the app:

flask run

Browse to the sample application at http://localhost:5000 in a web browser.

Last updated