Skip to content

Commit 4544e42

Browse files
committed
feat(config_parser.py): add documentation and bug tracker URLs to project config for better resource accessibility
1 parent 2e36f33 commit 4544e42

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

comfy_cli/registry/config_parser.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ def initialize_project_config():
110110
project = document.get("project", tomlkit.table())
111111
urls = project.get("urls", tomlkit.table())
112112
urls["Repository"] = git_remote_url
113+
urls["Documentation"] = git_remote_url + "/wiki"
114+
urls["Bug Tracker"] = git_remote_url + "/issues"
115+
113116
project["urls"] = urls
114117
project["name"] = sanitize_node_name(repo_name)
115118
project["description"] = ""

0 commit comments

Comments
 (0)