Browse Source

Revert "Removed unnecessary files"

This reverts commit 536bddcd96.
pull/1742/head
Sumit Ghosh 3 years ago
parent
commit
1494d82148
2 changed files with 26 additions and 0 deletions
  1. +9
    -0
      src/Services/Basket/Basket.API/README.md
  2. +17
    -0
      src/Services/Basket/Basket.API/web.config

+ 9
- 0
src/Services/Basket/Basket.API/README.md View File

@ -0,0 +1,9 @@
# Containerized eShop - Basket Service
Sample reference containerized application, cross-platform and microservices architecture.
Powered by Microsoft
Check procedures on how to get it started at the Wiki:
https://github.com/dotnet/eShopOnContainers/wiki

+ 17
- 0
src/Services/Basket/Basket.API/web.config View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!--
Configure your application settings in appsettings.json. Learn more at http://go.microsoft.com/fwlink/?LinkId=786380
-->
<system.webServer>
<handlers>
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
</handlers>
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false" hostingModel="InProcess">
<environmentVariables>
<environmentVariable name="COMPLUS_ForceENC" value="1" />
<environmentVariable name="ASPNETCORE_ENVIRONMENT" value="Development" />
</environmentVariables>
</aspNetCore>
</system.webServer>
</configuration>

Loading…
Cancel
Save