https://github.com/serverless-operations/serverless-azure-workshop
https://github.com/serverless-operations/serverless-azure-workshop
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/serverless-operations/serverless-azure-workshop
- Owner: serverless-operations
- Created: 2019-12-13T06:47:58.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T12:00:16.000Z (over 3 years ago)
- Last Synced: 2025-03-06T04:18:44.014Z (about 1 year ago)
- Language: JavaScript
- Size: 728 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Azure Functions with Serverless Framework workshop
## インストール
### Install npm modules
```
$ npm install
```
### Azure Functions Core Tools
```
$ brew tap azure/functions
$ brew install azure-functions-core-tools
```
### Azure CLI
```
$ brew update && brew install azure-cli
```
### .NET Core SDK
https://dotnet.microsoft.com/download よりダウンロード。
### .NET SDK CosmosDB extension
```
$ func extensions install -p Microsoft.Azure.WebJobs.Extensions.CosmosDB -v 3.0.5
```
## デプロイ
```
$ serverless deploy
```
## ARM Template のデプロイ
```
$ az group deployment create --resource-group <リソースグループ名> --template-file template.json
```