We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e36f33 commit 4544e42Copy full SHA for 4544e42
1 file changed
comfy_cli/registry/config_parser.py
@@ -110,6 +110,9 @@ def initialize_project_config():
110
project = document.get("project", tomlkit.table())
111
urls = project.get("urls", tomlkit.table())
112
urls["Repository"] = git_remote_url
113
+ urls["Documentation"] = git_remote_url + "/wiki"
114
+ urls["Bug Tracker"] = git_remote_url + "/issues"
115
+
116
project["urls"] = urls
117
project["name"] = sanitize_node_name(repo_name)
118
project["description"] = ""
0 commit comments