DocSpace-client/web/ASC.Web.Api/Program.cs

51 lines
1.8 KiB
C#
Raw Normal View History

2019-11-15 08:47:56 +00:00
using System.Collections.Generic;
2019-08-15 12:04:42 +00:00
using System.IO;
2020-07-03 15:57:59 +00:00
2019-05-15 14:56:09 +00:00
using Microsoft.AspNetCore.Hosting;
2019-05-28 15:05:20 +00:00
using Microsoft.Extensions.Configuration;
2020-07-03 11:47:27 +00:00
using Microsoft.Extensions.Hosting;
2019-05-28 15:05:20 +00:00
2019-05-15 14:56:09 +00:00
namespace ASC.Web.Api
{
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
2020-09-30 14:47:42 +00:00
public static IHostBuilder CreateHostBuilder(string[] args)
{
return Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
2020-10-12 19:39:23 +00:00
webBuilder.UseStartup<Startup>();
2019-05-28 15:05:20 +00:00
})
2020-09-30 14:47:42 +00:00
.ConfigureAppConfiguration((hostingContext, config) =>
{
2020-10-12 16:23:15 +00:00
var buided = config.Build();
var path = buided["pathToConf"];
if (!Path.IsPathRooted(path))
{
path = Path.GetFullPath(Path.Combine(hostingContext.HostingEnvironment.ContentRootPath, path));
}
2019-06-21 08:03:42 +00:00
2020-10-12 19:39:23 +00:00
config.SetBasePath(path);
config
2020-10-12 16:23:15 +00:00
.AddInMemoryCollection(new Dictionary<string, string>
{
2020-09-30 14:47:42 +00:00
{"pathToConf", path}
2020-10-12 16:23:15 +00:00
})
.AddJsonFile("appsettings.json")
.AddJsonFile($"appsettings.{hostingContext.HostingEnvironment.EnvironmentName}.json", true)
.AddJsonFile("storage.json")
.AddJsonFile("kafka.json")
.AddJsonFile($"kafka.{hostingContext.HostingEnvironment.EnvironmentName}.json", true)
.AddEnvironmentVariables()
.AddCommandLine(args);
2020-09-30 14:47:42 +00:00
});
}
2019-05-15 14:56:09 +00:00
}
}