在 Azure Web App zip 部署中忽略 .env

问题描述 投票:0回答:1

我通过 VS Code 将 NodeJS Web 应用程序部署到我的 azure Web 应用程序。这工作正常,但它也需要

.env
文件,该文件仅用于本地目的。我尝试将其添加到
.vscode\settings.json
中,就像
 一样将其排除在 
appService.zipIgnorePattern

{
    "appService.zipIgnorePattern": [
        "node_modules{,/**}",
        ".vscode{,/**}",
        ".env"
    ]
}

enter image description here

但是在我的 VS code azure 插件的文件部分中重新部署后它仍然可见。

更新:我认为该文件确实已被排除,但原始部署中的文件仍然存在。是否可以选择从以前的部署中删除文件?这是一个 Linux 托管的 NodeJS Web 应用程序。

azure security visual-studio-code deployment azure-web-app-service
1个回答
2
投票

尝试这样提及,

{
  "appService.zipIgnorePattern": [
    "node_modules{,/**}",
    ".vscode{,/**}",
    ".env{,/**}"
  ]
}
© www.soinside.com 2019 - 2024. All rights reserved.