mirror of https://github.com/dapr/quickstarts.git
33 lines
894 B
C#
33 lines
894 B
C#
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddActors(options =>
|
|
{
|
|
// Register actor types and configure actor settings
|
|
options.Actors.RegisterActor<SmartDevice.ControllerActor>();
|
|
options.Actors.RegisterActor<SmartDevice.SmokeDetectorActor>();
|
|
options.ReentrancyConfig = new Dapr.Actors.ActorReentrancyConfig()
|
|
{
|
|
Enabled = true,
|
|
MaxStackDepth = 32,
|
|
};
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
if (app.Environment.IsDevelopment())
|
|
{
|
|
app.UseDeveloperExceptionPage();
|
|
}
|
|
else
|
|
{
|
|
// By default, ASP.Net Core uses port 5000 for HTTP. The HTTP
|
|
// redirection will interfere with the Dapr runtime. You can
|
|
// move this out of the else block if you use port 5001 in this
|
|
// example, and developer tooling (such as the VSCode extension).
|
|
app.UseHttpsRedirection();
|
|
}
|
|
|
|
app.MapActorsHandlers();
|
|
|
|
app.Run();
|