An open API service indexing awesome lists of open source software.

https://github.com/johnpapa/aggregator-app

serverless function with api aggregator with azure
https://github.com/johnpapa/aggregator-app

Last synced: 6 months ago
JSON representation

serverless function with api aggregator with azure

Awesome Lists containing this project

README

          

# aggregator app

```bash
az login
```

Create a place to logically store everything (resource group)

```bash
az group create -n PapaStarWarsApiGroup -l eastus
```

Create the storage resource for the Function App

```bash
az storage account create -n papastarwarsapistorage -g PapaStarWarsApiGroup --sku Standard_LRS -l eastus
```

Create the Function App

```bash
az functionapp create -n -g PapaStarWarsApiGroup -s papastarwarsapistorage -c eastus
```