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

49 lines
1.7 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();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
2019-05-28 15:05:20 +00:00
})
2019-08-15 12:04:42 +00:00
.ConfigureAppConfiguration((hostingContext, config) =>
{
2019-06-21 08:03:42 +00:00
var buided = config.Build();
var path = buided["pathToConf"];
if (!Path.IsPathRooted(path))
{
path = Path.GetFullPath(Path.Combine(hostingContext.HostingEnvironment.ContentRootPath, path));
}
config.SetBasePath(path);
config
2019-11-15 08:47:56 +00:00
.AddInMemoryCollection(new Dictionary<string, string>
{
{"pathToConf", path}
})
2019-06-21 08:03:42 +00:00
.AddJsonFile("appsettings.json")
.AddJsonFile($"appsettings.{hostingContext.HostingEnvironment.EnvironmentName}.json", true)
.AddJsonFile("storage.json")
2019-08-23 12:49:23 +00:00
.AddJsonFile("kafka.json")
2019-11-14 09:21:15 +00:00
.AddJsonFile($"kafka.{hostingContext.HostingEnvironment.EnvironmentName}.json", true)
2020-06-04 13:26:31 +00:00
.AddEnvironmentVariables()
.AddCommandLine(args);
2019-05-28 15:05:20 +00:00
});
2019-05-15 14:56:09 +00:00
}
}