1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 12:43:14 +00:00

new identity project

This commit is contained in:
Kyle Spearrin
2017-05-05 16:05:34 -04:00
parent c6e569ea6d
commit 7f3bc450fd
7 changed files with 112 additions and 9 deletions

20
src/Identity/Program.cs Normal file
View File

@@ -0,0 +1,20 @@
using System.IO;
using Microsoft.AspNetCore.Hosting;
namespace Bit.Identity
{
public class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
host.Run();
}
}
}