From 80e4ec75dea23429f02d1a392a8a843f67397826 Mon Sep 17 00:00:00 2001 From: adlsdztony Date: Wed, 4 Jun 2025 19:58:47 +0800 Subject: [PATCH] fix&docs: update FLASK_DEBUG setting to false in .env and README --- monitor/.env | 2 +- monitor/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/monitor/.env b/monitor/.env index d28ba42..8ebac0c 100644 --- a/monitor/.env +++ b/monitor/.env @@ -8,4 +8,4 @@ RESULTS_BASE_PATH=../results_operator_aws/pyautogui/screenshot/computer-use-prev MAX_STEPS=50 FLASK_PORT=80 FLASK_HOST=0.0.0.0 -FLASK_DEBUG=true \ No newline at end of file +FLASK_DEBUG=false \ No newline at end of file diff --git a/monitor/README.md b/monitor/README.md index 4ba8c7b..acbe2d3 100644 --- a/monitor/README.md +++ b/monitor/README.md @@ -25,7 +25,7 @@ The monitor can be configured by editing the `.env` file in the monitor director | MAX_STEPS | Maximum steps to display for a task | 50 | | FLASK_PORT | Port for the web server | 80 | | FLASK_HOST | Host address for the web server | 0.0.0.0 | -| FLASK_DEBUG | Enable debug mode (true/false) | true | +| FLASK_DEBUG | Enable debug mode (true/false) | false | For example: ```bash @@ -36,7 +36,7 @@ RESULTS_BASE_PATH=../results_operator_aws/pyautogui/screenshot/computer-use-prev MAX_STEPS=50 FLASK_PORT=80 FLASK_HOST=0.0.0.0 -FLASK_DEBUG=true +FLASK_DEBUG=false ``` ## Running with Docker