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: