清理

已完成

完成项目后,你可能希望清理开发环境或将其返回到其典型状态。 你可能还希望删除资源组。

清理开发容器

可以停止开发容器环境来释放资源,无论是在本地计算机还是在 GitHub 上。 删除 GitHub Codespaces 环境可确保你可以最大程度地提高帐户获得的核心免费小时数权利。

重要

有关 GitHub 帐户权利的详细信息,请参阅 GitHub Codespaces 每月包含的存储和核心小时数

  1. 登录到 GitHub Codespaces 仪表板 (https://github.com/codespaces)。

  2. 找到当前正在运行的、源自 azure-samples/cosmosdb-chatgpt GitHub 存储库的 Codespaces。

    Screenshot of all the running Codespaces including their status and templates.

  3. 打开 codespace 的上下文菜单,然后选择“删除”。

    Screenshot of the context menu for a single codespace with the delete option highlighted.

清理资源组

当你不再需要此项目中的资源时,删除相应的资源组。

  1. 创建“resourceGroupName”的 shell 变量(如果尚不存在)。

    resourceGroupName="mslearn-cosmos-openai"
    
  2. 使用 az group delete 删除资源组。

    az group delete \
        --name $resourceGroupName