41 lines
853 B
C#
41 lines
853 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using Microsoft.SemanticKernel;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Configure logging
|
|
builder.Services.AddLogging((logging) =>
|
|
{
|
|
logging.AddConsole();
|
|
logging.AddDebug();
|
|
});
|
|
|
|
// Configure the Kernel with DI. This is required for dependency injection to work with processes.
|
|
builder.Services.AddKernel();
|
|
|
|
// Configure Dapr
|
|
builder.Services.AddActors(static options =>
|
|
{
|
|
// Register the actors required to run Processes
|
|
options.AddProcessActors();
|
|
});
|
|
|
|
builder.Services.AddControllers();
|
|
var app = builder.Build();
|
|
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
else
|
|
{
|
|
// Configure the HTTP request pipeline.
|
|
app.UseHttpsRedirection();
|
|
app.UseAuthorization();
|
|
}
|
|
|
|
app.MapControllers();
|
|
app.MapActorsHandlers();
|
|
app.Run();
|