/Serverless-Functions

Functions Serverless with basic operations

Primary LanguageC#

Serverless-Functions

Functions Serverless with basic operations CRUD

Using

  • .Net 3.1
  • Azure Functions
  • Trigger HTTP
  • Storage MongoDB

Get Started prepare Environment

On root folder run docker-compose with: docker-compose up

Run Application

Run local azure function

  • dotnet restore
  • dotnet build
  • dotnet run

Functions will be executed locally as standard on the port: 7071

Database

To Access Database Management: http://localhost:8081/

Use Function

You can use Postman to trigger HTTP events to functions

Models

Car

{
    "plate": "string",
    "model": "string",
    "price": decimal
}