This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Added gRPC and HTTP endpoints via config
davidfowl/common-services
David Fowler
1 year ago
committed by
Reuben Bond
parent
d0c710ebdc
commit
69b28c6add
3 changed files
with
33 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-0
src/Services/Basket/Basket.API/appsettings.json
+11
-0
src/Services/Catalog/Catalog.API/appsettings.json
+11
-0
src/Services/Ordering/Ordering.API/appsettings.json
+ 11
- 0
src/Services/Basket/Basket.API/appsettings.json
View File
@ -5,6 +5,17 @@
"Microsoft.AspNetCore"
:
"Warning"
}
}
,
"Kestrel"
:
{
"Endpoints"
:
{
"Http"
:
{
"Url"
:
"http://localhost:5221"
}
,
"gRPC"
:
{
"Url"
:
"http://localhost:6221"
,
"Protocols"
:
"Http2"
}
}
}
,
"OpenApi"
:
{
"Endpoint"
:
{
"Name"
:
"Basket.API V1"
+ 11
- 0
src/Services/Catalog/Catalog.API/appsettings.json
View File
@ -5,6 +5,17 @@
"Microsoft.AspNetCore"
:
"Warning"
}
}
,
"Kestrel"
:
{
"Endpoints"
:
{
"Http"
:
{
"Url"
:
"http://localhost:5222"
}
,
"gRPC"
:
{
"Url"
:
"http://localhost:6222"
,
"Protocols"
:
"Http2"
}
}
}
,
"OpenApi"
:
{
"Endpoint"
:
{
"Name"
:
"Catalog.API V1"
+ 11
- 0
src/Services/Ordering/Ordering.API/appsettings.json
View File
@ -6,6 +6,17 @@
}
}
,
"AllowedHosts"
:
"*"
,
"Kestrel"
:
{
"Endpoints"
:
{
"Http"
:
{
"Url"
:
"http://localhost:5224"
}
,
"gRPC"
:
{
"Url"
:
"http://localhost:6224"
,
"Protocols"
:
"Http2"
}
}
}
,
"OpenApi"
:
{
"Endpoint"
:
{
"Name"
:
"Ordering.API V1"
Write
Preview
Loading…
Cancel
Save