Skip to content

Remote Build

Eric Jizba edited this page Oct 3, 2019 · 2 revisions

By default, Python projects will attempt to package your project on your local machine before deploying. However, you may frequently run into problems with the func: pack task. As a solution, you can now try deploying your source code as-is and the server will take care of building your project. Just follow these steps:

In your .vscode/settings.json file:

  1. Change azureFunctions.scmDoBuildDuringDeployment to true
  2. Change azureFunctions.deploySubpath to .
  3. Remove the setting azureFunctions.preDeployTask
Clone this wiki locally