项目作者: ecraciun

项目描述 :
Azure functions learning playground.
高级语言: C#
项目地址: git://github.com/ecraciun/AzureFunctionsLearningPlayground.git


Azure Functions Learning Playground

Build status

I just want to take a look into what Azure Functions can do an refresh my hands-on experience :)

Running the solution

Prerequisites

  1. Visual Studio 2017 (or if want you can try out Visual Studio 2019 Preview)
    1. Make sure you have the Azure Development workload installed
    2. And also the .NET Core cross-platform development workload
  2. .NET Core 2.1 SDK
  3. An Azure Subscription (Get a free Azure Trial Subscription)

Locally

Open the solution in Visual Studio. Add a new file to the FunctionsPlayground project and name it local.settings.json.
Paste in this sample content, and adjust it accordingly for your preferences and environment:

  1. {
  2. "IsEncrypted": false,
  3. "Values": {
  4. "AzureWebJobsDashboard": "UseDevelopmentStorage=true",
  5. "AzureWebJobsStorage": "UseDevelopmentStorage=true",
  6. "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "UseDevelopmentStorage=true",
  7. "FUNCTIONS_EXTENSION_VERSION": "~2",
  8. "WEBSITE_NODE_DEFAULT_VERSION": "8.11.1",
  9. "FUNCTIONS_WORKER_RUNTIME": "dotnet",
  10. "AzureWebJobsSecretStorageType": "files" // temporary fix required for Azure Storage Emulator 5.8.0.0 and Azure Functions latest SDK.
  11. },
  12. "ConnectionStrings": {}
  13. }

Hit F5 or Ctrl+F5 and have fun!

Quick deploy to Azure

Deploy to Azure

Resources