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
- Host: GitHub
- URL: https://github.com/johnpapa/aggregator-app
- Owner: johnpapa
- Created: 2017-08-05T23:51:53.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-07T19:51:31.000Z (about 8 years ago)
- Last Synced: 2025-02-14T03:16:28.329Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```