From e03eb76a25286ac91386a341d7b396ee8a493dec Mon Sep 17 00:00:00 2001 From: Alex Cunha Date: Fri, 29 May 2026 09:15:15 -0700 Subject: [PATCH 1/2] Update forum URL to mod.audio --- modcli/auth.py | 2 +- modcli/cli.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modcli/auth.py b/modcli/auth.py index ead6404..78f4793 100644 --- a/modcli/auth.py +++ b/modcli/auth.py @@ -33,7 +33,7 @@ def get_open_port(): def login_sso_detached(api_url: str): click.echo('Running in detached mode...') click.echo(f'1) Open this url in any browser: {api_url}/users/tokens_sso') - click.echo('2) The URL will automatically redirect to MOD Forum (https://forum.moddevices.com)') + click.echo('2) The URL will automatically redirect to MOD Forum (https://forum.mod.audio)') click.echo('3) Once MOD Forum page loads, if asked, enter your credentials or register a new user') click.echo('4) A JWT token will be displayed in your browser') try: diff --git a/modcli/cli.py b/modcli/cli.py index d55dd84..ebb533e 100644 --- a/modcli/cli.py +++ b/modcli/cli.py @@ -5,7 +5,7 @@ from modcli import context, auth, bundle -_sso_disclaimer = '''SSO login requires you have a valid account in MOD Forum (https://forum.moddevices.com). +_sso_disclaimer = '''SSO login requires you have a valid account in MOD Forum (https://forum.mod.audio). If your browser has an active session the credentials will be used for this login. Confirm?''' From a6ced677bf1d4f2f4f33ea2d087d80687b5ef782 Mon Sep 17 00:00:00 2001 From: Alex Cunha Date: Fri, 29 May 2026 09:26:44 -0700 Subject: [PATCH 2/2] Update API and pipeline URLs to mod.audio --- modcli/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modcli/settings.py b/modcli/settings.py index 42e984f..81d2a4b 100644 --- a/modcli/settings.py +++ b/modcli/settings.py @@ -2,7 +2,7 @@ CONFIG_DIR = os.path.expanduser('~/.config/modcli') URLS = { - 'labs': ('https://api-labs.moddevices.com/v2', 'https://pipeline-labs.moddevices.com/bundle/'), - 'dev': ('https://api-dev.moddevices.com/v2', 'https://pipeline-dev.moddevices.com/bundle/'), + 'labs': ('https://api-labs.mod.audio/v2', 'https://pipeline-labs.mod.audio/bundle/'), + 'dev': ('https://api-dev.mod.audio/v2', 'https://pipeline-dev.mod.audio/bundle/'), } DEFAULT_ENV = 'labs'