Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 1 KB

Demo-nodejs1.md

File metadata and controls

34 lines (19 loc) · 1 KB

AZ-204 Demo: Durable Azure Function

in this demo you will run durable function Chain Function locally:

ChainFunExample

Technical Requirements:

  • Visual Studio Code
  • Node 16 or higher
  • Postman to test Web API

Demonstration

  1. Update storage account reference from local.settings.json

    { "AzureWebJobsStorage": "<your storage account connection string>" }
  2. Open folder in VS Code and run following command in terminal: npm install

  3. Run the Function locally from VS Code by use play button. Monitor terminal to make sure it is started without errors.

  4. Use Postman to test function like explained bellow.

  5. Use postman to send GET request to http://localhost:7071/orchestrators/ChainFunction

First request

  1. Send additional request to provided url by use postman to obtain the results.

Second request