From e755876aa0685ad3a66b29c0b8dae93f6377d0fb Mon Sep 17 00:00:00 2001 From: "Laisky.Cai" Date: Thu, 27 Feb 2025 01:48:42 +0000 Subject: [PATCH] docs: update README to change boolean values to strings for environment variables --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aa8d62be..d07e789a 100644 --- a/README.md +++ b/README.md @@ -52,11 +52,11 @@ oneapi: # (optional) SESSION_SECRET set a fixed session secret so that user sessions won't be invalidated after server restart SESSION_SECRET: xxxxxxx # (optional) DEBUG enable debug mode - DEBUG: true + DEBUG: "true" # (optional) DEBUG_SQL display SQL logs - DEBUG_SQL: true + DEBUG_SQL: "true" # (optional) ENFORCE_INCLUDE_USAGE require upstream API responses to include usage field - ENFORCE_INCLUDE_USAGE: true + ENFORCE_INCLUDE_USAGE: "true" # (optional) GLOBAL_API_RATE_LIMIT maximum API requests per IP within three minutes, default is 1000 GLOBAL_API_RATE_LIMIT: 1000 # (optional) GLOBAL_WEB_RATE_LIMIT maximum web page requests per IP within three minutes, default is 1000