我通过 VS Code 将 NodeJS Web 应用程序部署到我的 azure Web 应用程序。这工作正常,但它也需要
.env
文件,该文件仅用于本地目的。我尝试将其添加到 .vscode\settings.json
中,就像 一样将其排除在
appService.zipIgnorePattern
中
{
"appService.zipIgnorePattern": [
"node_modules{,/**}",
".vscode{,/**}",
".env"
]
}
但是在我的 VS code azure 插件的文件部分中重新部署后它仍然可见。
更新:我认为该文件确实已被排除,但原始部署中的文件仍然存在。是否可以选择从以前的部署中删除文件?这是一个 Linux 托管的 NodeJS Web 应用程序。
尝试这样提及,
{
"appService.zipIgnorePattern": [
"node_modules{,/**}",
".vscode{,/**}",
".env{,/**}"
]
}