8000 GitHub - eduflornet/Serverless
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

eduflornet/Serverless

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This demo contains a simple Azure Functions REST-style API that can be used for CRUD operations on a todo task list.

To test locally with the Azure Storage emulator, you will need the following local.settings.json file to be set up:

{
  "IsEncrypted": false,
  "Values": {
    "AzureWebJobsStorage": "UseDevelopmentStorage=true",
    "AzureWebJobsDashboard": "UseDevelopmentStorage=true",
    "FUNCTIONS_WORKER_RUNTIME": "dotnet"
  },
  "Host": {
    "CORS": "*"
  }
}

A Postman collection is also included with the basic structure to test each of the CRUD methods of the API.

I have using the following tools:

  • Visual Studio 2019
  • Postman 8.9.1
  • NETCore 3.1
  • Microsoft.NET.Sdk.Functions Version="3.0.13"
  • Microsoft.Azure.WebJobs.Extensions.Storage Version="4.0.4"

References:

About

No description or website provided.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0