From 816e65a00cfcca0890735df2889cb898d6cfbc76 Mon Sep 17 00:00:00 2001 From: Emi Vasilek Date: Tue, 28 Nov 2023 15:30:42 +0000 Subject: [PATCH] add warning about serve not being suitable for production --- comfyrecipes/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comfyrecipes/cli.py b/comfyrecipes/cli.py index 6a48b8b..5205862 100644 --- a/comfyrecipes/cli.py +++ b/comfyrecipes/cli.py @@ -44,6 +44,7 @@ def main() -> None: (args.address, args.port), http.server.SimpleHTTPRequestHandler ) print(f"serving at http://{args.address}:{args.port}") + print("THIS WEB SERVER IS ONLY MEANT FOR LOCAL TESTING, IT IS NOT SUITABLE FOR PRODUCTION") try: httpd.serve_forever() except KeyboardInterrupt: