Skip to content

Build an Azure Durable Functions that will scrape GitHub for opened issues and store them on Azure Storage.

License

Notifications You must be signed in to change notification settings

sdras/durablefunctions-apiscraping-nodejs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

services platforms author
functions
nodejs
MaximRouiller

Retrieve opened issue count on GitHub with Azure Durable Functions

Build

The project requires the latest version of the Azure Functions CLI.

It can be installed by running the following code:

npn i -g azure-functions-core-tools@core --unsafe-perm true

More installation options are also available.

Running the Sample

Pre-requisite

Locally

Change the GitHubToken value in local.settings.json to match your GitHub Personal Access Token created previously in the pre-requisite.

To ensure that everything is configured properly run the following commands within the FanOutFanInCrawler folder.

func extensions install
npm install

Once the dependencies has been installed, you can either run it from VS Code by running code . and hitting F5 on your keyboard. If you want to run it from the command line, you can run it with the following command within the FanOutFanInCrawler folder.

func host start

On Azure

To deploy components on Azure you will require to install and login with the Azure CLI.

First, you will need to provision the service. Look into the provision.ps1 file provided to familiarize yourself with the resources we are going to create.

Then you can execute the file with the previously generated GitHub.

.\provision.ps1 -githubToken <TOKEN> -resourceGroup <ResourceGroupName> -storageName <StorageAccountName> -functionName <FunctionName>

If you do not have PowerShell installed, you can simply take the commands within the file and run it manually.

Contribute

You can contribute to this sample by following the guidelines.

Resources

About

Build an Azure Durable Functions that will scrape GitHub for opened issues and store them on Azure Storage.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.5%
  • PowerShell 14.5%