feat: Configuración inicial de Docker Compose, Nginx y proyectos .NET

This commit is contained in:
2025-08-14 12:37:57 -03:00
parent 2fd30d1a2e
commit d9bcfd7086
38 changed files with 967 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
using Elecciones.Worker;
var builder = Host.CreateApplicationBuilder(args);
builder.Services.AddHostedService<Worker>();
var host = builder.Build();
host.Run();