You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
Sample .NET Core reference application, powered by Microsoft, based on a simplified microservices architecture and Docker containers. <p>
3
3
**Note for Pull Requests**: We accept pull request from the community. When doing it, please do it onto the DEV branch which is the consolidated work-in-progress branch. Do not request it onto Master, if possible.
4
4
5
+
>**PLEASE** Read our [branch guide](./branch-guide.md) to know about our branching policy
6
+
5
7
> ### DISCLAIMER
6
8
> **IMPORTANT:** The current state of this sample application is **BETA**, consider it version a 0.1 foundational version, therefore, many areas could be improved and change significantly while refactoring current code and implementing new features. **Feedback with improvements and pull requests from the community will be highly appreciated and accepted.**
7
9
>
@@ -41,7 +43,7 @@ You can download them and start reviewing these Guides/eBooks here:
-`dev`: Contains the latest code **and it is the branch actively developed**. Note that **all PRs must be against `dev` branch to be considered**.
6
+
-`master`: Synced time to time from dev. It contains "stable" code, although not the latest one. We plan to do periodic merges from `dev` to `master`, but we are not doing it right now.
7
+
-`netcore2`: Contains NETCore 2.0 (preview2) based code. All APIs and webs are migrated to netcore2 except `Identity.API` which still uses netcore1.1 (because of Identity Server). Dockerfiles are updated also. Use this branch to test the NETCore 2.0 code. You can also submit PR to this branch if they are related to netcore2.
8
+
9
+
Any other branch is considered temporary and could be deleted at any time. Do not do any PR to them!
Copy file name to clipboardExpand all lines: cli-windows/add-firewall-rules-for-sts-auth-thru-docker.ps1
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,6 @@ try {
21
21
Write-Host"Rule found"
22
22
}
23
23
catch [Exception] {
24
-
New-NetFirewallRule-DisplayName eShopOnContainers-Inbound -Confirm -Description "eShopOnContainers Inbound Rule for port range 5100-5105"-LocalAddress Any -LocalPort 5100-5110-Protocol tcp -RemoteAddress Any -RemotePort Any -Direction Inbound
25
-
New-NetFirewallRule-DisplayName eShopOnContainers-Outbound -Confirm -Description "eShopOnContainers Outbound Rule for port range 5100-5105"-LocalAddress Any -LocalPort 5100-5110-Protocol tcp -RemoteAddress Any -RemotePort Any -Direction Outbound
24
+
New-NetFirewallRule-DisplayName eShopOnContainers-Inbound -Confirm -Description "eShopOnContainers Inbound Rule for port range 5100-5110"-LocalAddress Any -LocalPort 5100-5110-Protocol tcp -RemoteAddress Any -RemotePort Any -Direction Inbound
25
+
New-NetFirewallRule-DisplayName eShopOnContainers-Outbound -Confirm -Description "eShopOnContainers Outbound Rule for port range 5100-5110"-LocalAddress Any -LocalPort 5100-5110-Protocol tcp -RemoteAddress Any -RemotePort Any -Direction Outbound
- ExternalCatalogBaseUrl=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5101 #Local: You need to open your local dev-machine firewall at range 5100-5105. at range 5100-5105.
- PicBaseUrl=${ESHOP_AZURE_STORAGE_CATALOG:-http://localhost:5101/api/v1/catalog/items/[0]/pic/} #Local: You need to open your local dev-machine firewall at range 5100-5110.
- MvcClient=http://${ESHOP_EXTERNAL_DNS_NAME_OR_IP}:5100 #Local: You need to open your local dev-machine firewall at range 5100-5105.
42
+
- XamarinCallback=http://${ESHOP_PROD_EXTERNAL_DNS_NAME_OR_IP}:5105/xamarincallback #localhost do not work for UWP login, so we have to use "external" IP always
- 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.
0 commit comments