Skip to content

Commit 870ac40

Browse files
committed
Add Marketing endpoint
1 parent 6168b52 commit 870ac40

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

docker-compose.override.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ services:
7373
- OrderingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5102
7474
- IdentityUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5105 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
7575
- BasketUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5103
76+
- MarketingUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5110
7677
- CatalogUrlHC=http://catalog.api/hc
7778
- OrderingUrlHC=http://ordering.api/hc
7879
- IdentityUrlHC=http://identity.api/hc #Local: Use ${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}, if using external IP or DNS name from browser.

src/Web/WebMVC/AppSettings.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ public class AppSettings
1111
public string CatalogUrl { get; set; }
1212
public string OrderingUrl { get; set; }
1313
public string BasketUrl { get; set; }
14+
public string MarketingUrl { get; set; }
1415
public Logging Logging { get; set; }
1516
}
1617

src/Web/WebMVC/appsettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"CatalogUrl": "http://localhost:5101",
33
"OrderingUrl": "http://localhost:5102",
44
"BasketUrl": "http://localhost:5103",
5+
"MarketingUrl": "http://localhost:5110",
56
"IdentityUrl": "http://localhost:5105",
67
"CallBackUrl": "http://localhost:5100/",
78
"IsClusterEnv": "False",

0 commit comments

Comments
 (0)