From 9115126c9ae00bdfcfa2f8b4c1a25d31f23b3dde Mon Sep 17 00:00:00 2001 From: Kraig Brockschmidt Date: Mon, 26 Oct 2020 11:21:17 -0700 Subject: [PATCH] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d9d39a3d..bc29ab4b3 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ * This sample contains the completed program from the tutorial, make sure to visit the link: [Using Flask in Visual Studio Code](https://code.visualstudio.com/docs/python/tutorial-flask). Intermediate steps are not included. * It also contains the Dockerfile and uwsgi.ini files necessary to build a container with a production server. The resulting image works both locally and when deployed to Azure App Service. See [Deploy Python using Docker containers](https://code.visualstudio.com/docs/python/tutorial-deploy-containers). * To run the app: - 1. Run the command `cd hello_app`, which is the folder that contains the Flask app. + 1. Run the command `cd hello_app`, to change into the folder that contains the Flask app. 1. Run the command `set FLASK_APP=webapp` (Windows cmd) or `FLASK_APP=webapp` (macOS/Linux) to point to the app module. 1. Start the Flask server with `flask run`.