aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Web/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DevHive.Web/Program.cs')
-rw-r--r--src/DevHive.Web/Program.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/DevHive.Web/Program.cs b/src/DevHive.Web/Program.cs
deleted file mode 100644
index 6982da9..0000000
--- a/src/DevHive.Web/Program.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using Microsoft.AspNetCore.Hosting;
-using Microsoft.Extensions.Hosting;
-
-namespace DevHive.Web
-{
- public class Program
- {
- private const int HTTP_PORT = 5000;
-
- public static void Main(string[] args)
- {
- CreateHostBuilder(args).Build().Run();
- }
-
- public static IHostBuilder CreateHostBuilder(string[] args) =>
- Host.CreateDefaultBuilder(args)
- .ConfigureWebHostDefaults(webBuilder =>
- {
- webBuilder.ConfigureKestrel(opt => opt.ListenLocalhost(HTTP_PORT));
- webBuilder.UseStartup<Startup>();
- });
- }
-}