mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.IO;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Squidex.Infrastructure.Log.Adapter;
|
|
|
|
namespace Squidex
|
|
{
|
|
public static class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
new WebHostBuilder()
|
|
.UseKestrel(k => { k.AddServerHeader = false; })
|
|
.UseContentRoot(Directory.GetCurrentDirectory())
|
|
.UseIISIntegration()
|
|
.UseStartup<WebStartup>()
|
|
.ConfigureLogging(builder =>
|
|
{
|
|
builder.AddSemanticLog();
|
|
})
|
|
.ConfigureAppConfiguration((hostContext, builder) =>
|
|
{
|
|
builder.AddAppConfiguration(hostContext.HostingEnvironment.EnvironmentName, args);
|
|
})
|
|
.Build()
|
|
.Run();
|
|
}
|
|
}
|
|
}
|
|
|