Update env file warning message to be more specific

This commit is contained in:
yangdx
2025-03-29 03:42:51 +08:00
parent c590d5878c
commit 539fcd5ebb

View File

@@ -25,7 +25,7 @@ def check_env_file():
""" """
if not os.path.exists(".env"): if not os.path.exists(".env"):
warning_msg = ( warning_msg = (
"Warning: .env file not found. Some features may not work properly." "Warning: Startup directory must contain .env file for multi-instance support."
) )
ASCIIColors.yellow(warning_msg) ASCIIColors.yellow(warning_msg)