Azure functions learning playground.
I just want to take a look into what Azure Functions can do an refresh my hands-on experience :)
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:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsDashboard": "UseDevelopmentStorage=true",
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "UseDevelopmentStorage=true",
"FUNCTIONS_EXTENSION_VERSION": "~2",
"WEBSITE_NODE_DEFAULT_VERSION": "8.11.1",
"FUNCTIONS_WORKER_RUNTIME": "dotnet",
"AzureWebJobsSecretStorageType": "files" // temporary fix required for Azure Storage Emulator 5.8.0.0 and Azure Functions latest SDK.
},
"ConnectionStrings": {}
}
Hit F5 or Ctrl+F5 and have fun!