Files
server/util/Server/Program.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
1.3 KiB
C#
Raw Permalink Normal View History

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Server;
2022-08-29 16:06:55 -04:00
public class Program
{
public static void Main(string[] args)
{
var config = new ConfigurationBuilder()
.AddCommandLine(args)
.Build();
2026-01-14 13:32:52 -05:00
var builder = new HostBuilder()
.ConfigureWebHost(builder =>
{
2026-01-14 13:32:52 -05:00
builder.UseConfiguration(config);
builder.UseKestrel();
builder.UseStartup<Startup>();
2026-01-14 16:17:18 -05:00
builder.ConfigureKestrel((_, _) => { });
2026-01-14 13:32:52 -05:00
var webRoot = config.GetValue<string>("webRoot");
if (string.IsNullOrWhiteSpace(webRoot))
{
builder.UseWebRoot(webRoot);
}
2020-11-03 14:29:07 -05:00
})
2026-01-14 13:32:52 -05:00
.ConfigureLogging(logging =>
{
logging.AddConsole()
.AddDebug();
});
var contentRoot = config.GetValue<string>("contentRoot");
if (!string.IsNullOrWhiteSpace(contentRoot))
{
builder.UseContentRoot(contentRoot);
2022-08-29 16:06:55 -04:00
}
else
{
2020-11-03 14:29:07 -05:00
builder.UseContentRoot(Directory.GetCurrentDirectory());
}
2026-01-14 13:32:52 -05:00
var host = builder.Build();
host.Run();
}
}