Getting Started
To start using Quickie in your .NET project, follow these steps:
Adding Quickie to Your Project
Install Quickie via NuGet:
dotnet add package Quickie
Add Quickie configuration in your
Program.cs
file:
Default Configuration:
builder.Services.QuickieConfig();
app.AddQuickie();
Customized Configuration
builder.Services.QuickieConfig(options => {
options.ShowCustomErrorMessage = false;
options.RateLimitingConfiguration = new RateLimitConfiguration
{
DisableRateLimiting = false
};
options.IdempotencyConfiguration = new IdempotentConfiguration
{
Enable = true
};
});
app.AddQuickie();
Simple demo it is, but you can go nuts with configuration. More here