signal-view-fix #35

Merged
benchinnery merged 9 commits from signal-view-fix into main 2026-06-04 16:05:12 -04:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 3dbbe1721d - Show all commits

View File

@ -27,7 +27,7 @@ RIA_LFS_RULES = [
("*.pkl", "filter=lfs diff=lfs merge=lfs -text"), ("*.pkl", "filter=lfs diff=lfs merge=lfs -text"),
] ]
DEFAULT_HUB = "http://localhost:3000" DEFAULT_HUB = "https://riahub.ai"
# Repo names must be safe directory names and valid git remote path components. # Repo names must be safe directory names and valid git remote path components.
_SAFE_NAME_RE = re.compile(r"^[A-Za-z0-9._-]{1,100}$") _SAFE_NAME_RE = re.compile(r"^[A-Za-z0-9._-]{1,100}$")

View File

@ -416,7 +416,7 @@ def _stream_upload_progress(href: str, headers: dict, file_path: str, size: int)
@click.option( @click.option(
"--repo", required=True, metavar="OWNER/NAME", help="Target repository on RIA Hub (e.g. benchinnery/my-dataset)." "--repo", required=True, metavar="OWNER/NAME", help="Target repository on RIA Hub (e.g. benchinnery/my-dataset)."
) )
@click.option("--hub", default="http://localhost:3000", show_default=True, metavar="URL", help="RIA Hub base URL.") @click.option("--hub", default="https://riahub.ai", show_default=True, metavar="URL", help="RIA Hub base URL.")
@click.option("--branch", default="main", show_default=True, help="Branch to commit the files to.") @click.option("--branch", default="main", show_default=True, help="Branch to commit the files to.")
@click.option( @click.option(
"--path", "--path",