diff --git a/polaris/hub/settings.py b/polaris/hub/settings.py index d830efa6..8edd6af7 100644 --- a/polaris/hub/settings.py +++ b/polaris/hub/settings.py @@ -6,8 +6,6 @@ from polaris.utils.types import HttpUrlString, TimeoutTypes -# from httpx._types import TimeoutTypes - class PolarisHubSettings(BaseSettings): """Settings for the OAuth2 Polaris Hub API Client. @@ -30,12 +28,10 @@ class PolarisHubSettings(BaseSettings): Allows for custom SSL certificates to be used. """ - hub_url: HttpUrlString = "http://localhost:3000/" # "https://polarishub.io/" + hub_url: HttpUrlString = "https://polarishub.io/" api_url: Optional[HttpUrlString] = None authorize_url: HttpUrlString = "https://pure-whippet-77.clerk.accounts.dev/oauth/authorize" - callback_url: HttpUrlString = ( - "http://localhost:3000/oauth2/callback" # "https://polarishub.io/oauth2/callback" - ) + callback_url: HttpUrlString = "https://polarishub.io/oauth2/callback" token_fetch_url: HttpUrlString = "https://pure-whippet-77.clerk.accounts.dev/oauth/token" user_info_url: HttpUrlString = "https://pure-whippet-77.clerk.accounts.dev/oauth/userinfo" scopes: str = "profile email"