Python Flask Web App
Clone the Python Flask App
git clone https://github.com/Azure-Samples/msdocs-python-flask-webapp-quickstartTo run the application locally:
Go to the application folder:
cd msdocs-python-flask-webapp-quickstartCreate a virtual environment for the app:
py -m venv .venv.venv\scripts\activateInstall the dependencies:
pip install -r requirements.txtRun the app:
flask runBrowse to the sample application at http://localhost:5000 in a web browser.

Last updated