Browse Source

Merge branch 'master' of https://github.com/dotnet/eShopOnContainers

pull/109/head
Cesar De la Torre 8 years ago
parent
commit
1b1136aab6
5 changed files with 22 additions and 0 deletions
  1. +4
    -0
      src/Console/eShopConsole/Properties/launchSettings.json
  2. +4
    -0
      src/Services/Basket/Basket.API/Properties/launchSettings.json
  3. +4
    -0
      src/Services/Catalog/Catalog.API/Properties/launchSettings.json
  4. +6
    -0
      src/Services/Ordering/Ordering.API/Properties/launchSettings.json
  5. +4
    -0
      src/Web/WebMVC/Properties/launchSettings.json

+ 4
- 0
src/Console/eShopConsole/Properties/launchSettings.json View File

@ -1,4 +1,8 @@
{
"profiles": {
"Docker": {
"executablePath": "%WINDIR%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"commandLineArgs": "-ExecutionPolicy RemoteSigned .\\DockerTask.ps1 -Run -Environment $(Configuration) -Machine '$(DockerMachineName)'"
}
}
}

+ 4
- 0
src/Services/Basket/Basket.API/Properties/launchSettings.json View File

@ -23,6 +23,10 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Docker": {
"launchBrowser": true,
"launchUrl": "http://localhost:{ServicePort}/api/values"
}
}
}

+ 4
- 0
src/Services/Catalog/Catalog.API/Properties/launchSettings.json View File

@ -22,6 +22,10 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Docker": {
"launchBrowser": true,
"launchUrl": "http://localhost:{ServicePort}/api/values"
}
}
}

+ 6
- 0
src/Services/Ordering/Ordering.API/Properties/launchSettings.json View File

@ -23,6 +23,12 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Docker": {
"executablePath": "%WINDIR%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"commandLineArgs": "-ExecutionPolicy RemoteSigned .\\DockerTask.ps1 -Run -Environment $(Configuration) -Machine '$(DockerMachineName)'",
"launchBrowser": true,
"launchUrl": "http://localhost:{ServicePort}/api/environmentInfo/machinename"
}
}
}

+ 4
- 0
src/Web/WebMVC/Properties/launchSettings.json View File

@ -21,6 +21,10 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"Docker": {
"launchBrowser": true,
"launchUrl": "http://localhost:{ServicePort}"
}
}
}

Loading…
Cancel
Save