构建 Azure 静态 Web 应用程序时是否有创建 local.settings.json 文件的命令?
Is there a command to create a local.settings.json file when building an Azure Static Web App?
我正在构建 Azure 静态 Web 应用程序。我想使用 app configurations。我在 UI 中添加了几个配置。是否有可用于根据我在 Azure 门户中输入的当前配置生成文件 local.settings.json
的命令?
- 文档列出了几个示例,我可以剪切和粘贴和修改这些示例,但我不太清楚需要什么,不需要什么。比如这个例子,我需要
FUNCTIONS_WORKER_RUNTIME
吗?
- 我也很好奇是否存在这样的命令。
- 我试过
az rest --method post --uri "<static app's name in Azure portal>/listFunctionAppSettings"
,但这些命令失败了。
您可以使用 Azure Static Web Apps VS Code extension 下载应用程序设置。导航到扩展列表中的静态 Web 应用,然后右键单击“应用程序设置”->“下载远程设置”。
我正在构建 Azure 静态 Web 应用程序。我想使用 app configurations。我在 UI 中添加了几个配置。是否有可用于根据我在 Azure 门户中输入的当前配置生成文件 local.settings.json
的命令?
- 文档列出了几个示例,我可以剪切和粘贴和修改这些示例,但我不太清楚需要什么,不需要什么。比如这个例子,我需要
FUNCTIONS_WORKER_RUNTIME
吗? - 我也很好奇是否存在这样的命令。
- 我试过
az rest --method post --uri "<static app's name in Azure portal>/listFunctionAppSettings"
,但这些命令失败了。
您可以使用 Azure Static Web Apps VS Code extension 下载应用程序设置。导航到扩展列表中的静态 Web 应用,然后右键单击“应用程序设置”->“下载远程设置”。