This commit is contained in:
woolion 2025-03-02 04:00:33 -08:00 committed by GitHub
commit 9991b7e66e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
.comfyui.rc
__pycache__/
*.py[cod]
/output/

View File

@ -1,4 +1,4 @@
import argparse
import configargparse as argparse
import enum
import os
from typing import Optional
@ -34,7 +34,9 @@ class EnumAction(argparse.Action):
setattr(namespace, self.dest, value)
parser = argparse.ArgumentParser()
parser = argparse.ArgumentParser(default_config_files=["./.comfyui.rc", "~/.comfyui.rc"])
parser.add("-c", "--config", is_config_file=True, help="config file path")
parser.add_argument("--listen", type=str, default="127.0.0.1", metavar="IP", nargs="?", const="0.0.0.0,::", help="Specify the IP address to listen on (default: 127.0.0.1). You can give a list of ip addresses by separating them with a comma like: 127.2.2.2,127.3.3.3 If --listen is provided without an argument, it defaults to 0.0.0.0,:: (listens on all ipv4 and ipv6)")
parser.add_argument("--port", type=int, default=8188, help="Set the listen port.")

View File

@ -1,3 +1,4 @@
configargparse
torch
torchsde
torchvision