We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79da52a commit ff8e121Copy full SHA for ff8e121
.DS_Store
0 Bytes
src/GOC.ApiGateway/Program.cs
@@ -1,12 +1,5 @@
1
-using System;
2
-using System.Collections.Generic;
3
-using System.IO;
4
-using System.Linq;
5
-using System.Threading.Tasks;
6
-using Microsoft.AspNetCore;
+using Microsoft.AspNetCore;
7
using Microsoft.AspNetCore.Hosting;
8
-using Microsoft.Extensions.Configuration;
9
-using Microsoft.Extensions.Logging;
10
11
namespace GOC.ApiGateway
12
{
@@ -19,7 +12,8 @@ public static void Main(string[] args)
19
20
13
public static IWebHost BuildWebHost(string[] args) =>
21
14
WebHost.CreateDefaultBuilder(args)
22
- .UseStartup<Startup>()
15
+ .UseStartup<Startup>()
16
+ .UseUrls("http://*:5001")
23
17
.Build();
24
18
}
25
0 commit comments