Folder structure

All the functions codes of a specific function app would be located in the root folder with one or many subfolders and a host configuration file. The host.json file will contain runtime specific configurations. And each function folder will have one or more code files, function.json, configurations, and other function dependencies:

wwwroot| - host.json| - myazurenodefunction| | - function.json| | - index.js| | - node_modules|| | - ... packages ...| | - package.json| - myazurecsharpfunction| | - function.json| | - run.csx

With the folder structure we need to apply the best method of branching strategy for robust development and smooth deployment. The best practice is to have multiple branches with a master, which is a default ...

Get DevOps for Serverless Applications now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.