From 6479f8ce9c3ee869d76a3e244c44bc0a2840f377 Mon Sep 17 00:00:00 2001 From: Danny Sauer Date: Thu, 1 Dec 2022 02:47:00 -0600 Subject: [PATCH] fix variable name typo (#16255) --- compose/gettingstarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/gettingstarted.md b/compose/gettingstarted.md index 271baaafe1..9d936790a8 100644 --- a/compose/gettingstarted.md +++ b/compose/gettingstarted.md @@ -236,7 +236,7 @@ services: The new `volumes` key mounts the project directory (current directory) on the host to `/code` inside the container, allowing you to modify the code on the fly, without having to rebuild the image. The `environment` key sets the -`FLASK_ENV` environment variable, which tells `flask run` to run in development +`FLASK_DEBUG` environment variable, which tells `flask run` to run in development mode and reload the code on change. This mode should only be used in development. ## Step 6: Re-build and run the app with Compose