import os PROD_CLOUD_HOST = "cloud.arcade.dev" PROD_ENGINE_HOST = "api.arcade.dev" LOCALHOST = "localhost" LOCAL_AUTH_CALLBACK_PORT = 9905 # The path to the directory containing the Arcade configuration files. Typically ~/.arcade ARCADE_CONFIG_PATH = os.path.join(os.path.expanduser(os.getenv("ARCADE_WORK_DIR", "~")), ".arcade") # The path to the file containing the user's Arcade-related credentials (e.g., ARCADE_API_KEY). CREDENTIALS_FILE_PATH = os.path.join(ARCADE_CONFIG_PATH, "credentials.yaml") _style_block = b""" """ LOGIN_SUCCESS_HTML = ( b""" Success! """ + _style_block + b"""

Log in to Arcade CLI

Success! You can close this window.

""" ) LOGIN_FAILED_HTML = ( b""" Login failed """ + _style_block + b"""

Log in to Arcade CLI

Something went wrong. Please close this window and try again.

""" )