Rover 配置命令
创建和管理配置配置文件
Rover 允许您创建多个 配置文件,每个都与不同的 GraphOS 身份相对应。每个配置文件都有一个关联的 API密钥,用于确定其权限。您可以使用 rover config
命令集来管理配置文件。
显示配置文件
config list
命令config list
列出您存储的所有配置文件:
rover config listProfiles:defaultsso
config whoami
命令config whoami
显示您当前活动的配置文件详细信息:
rover config whoamiChecking identity of your API key against the registry.Key Type: USERUser ID: gh.StephenBarlowOrigin: --profile defaultAPI Key: user************************************abcd
创建配置文件
config auth
您可以使用 config auth
命令创建一个新的配置文件:
rover config authGo to https://studio.apollographql.com/user-settings/api-keys and create a new Personal API Key.Copy the key and paste it into the prompt below.>
默认情况下,您的配置文件以 default
名称保存。您可以使用 --profile
选项指定不同的名称:
rover config auth --profile sso
删除配置文件
config delete
命令config delete
删除指定的单个配置文件,指定其名称:
rover config delete ssoSuccessfully deleted profile "sso"
config clear
"config clear" 命令删除您存储的所有配置配置文件:
rover config clearSuccessfully cleared all configuration.