Skip to content

Commit 5e4f47b

Browse files
committed
Improve debug experience
1 parent 5dad0a8 commit 5e4f47b

40 files changed

+261
-669
lines changed

.dockerignore

-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,5 @@
2121
**/npm-debug.log
2222
**/obj
2323
**/secrets.dev.yaml
24-
**/values.dev.yaml
25-
**/WebSPA/wwwroot
2624
LICENSE
2725
**/README*.md

deploy/compose/.env .env

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Compose supports declaring default environment variables in an environment file named .env placed in the folder docker-compose command is executed from (current working directory).
1+
# Compose supports declaring default environment variables in an environment file named .env placed in the folder docker-compose command is executed from (current working directory).
22
# Compose expects each line in an env file to be in VAR=VAL format. Lines beginning with # (i.e. comments) are ignored, as are blank lines.
33
# Note: Values present in the environment at runtime will always override those defined inside the .env file. Similarly, values passed via command-line arguments take precedence as well.
44

.vscode/launch.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"configurations": [
3-
{
4-
"name": "Docker .NET Core Launch",
5-
"type": "docker",
6-
"request": "launch",
7-
"preLaunchTask": "docker-run: debug",
8-
"netCore": {
9-
"appProject": "${workspaceFolder}/src/ApiGateways/Web.Bff.Shopping/aggregator/Web.Shopping.HttpAggregator.csproj"
10-
}
11-
}
12-
]
2+
"configurations": [
3+
{
4+
"name": "Docker .NET Core Attach (Preview)",
5+
"type": "docker",
6+
"request": "attach",
7+
"platform": "netCore",
8+
"sourceFileMap": {
9+
"/src": "${workspaceFolder}"
10+
}
11+
}
12+
]
1313
}

.vscode/tasks.json

-60
This file was deleted.

Create-DockerfileSolutionRestore.ps1

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ $outfile = "DockerfileSolutionRestore.txt"
1313
Write-Output "" > $outfile
1414
Add-Content -Path $outfile "# Create this ""restore-solution"" section by running ./Create-DockerfileSolutionRestore.ps1, to optimize build cache reuse"
1515
Select-String -Path $solution -Pattern ', "(.*?\.csproj)"' | ForEach-Object { $_.Matches.Groups[1].Value.Replace("\", "/") } | Sort-Object | ForEach-Object {"COPY [""$_"", """ + $_.Substring(0, $_.LastIndexOf("/") + 1) + """]"} | Out-File -FilePath $outfile -Append
16+
Add-Content -Path $outfile "COPY [""docker-compose.dcproj"", ""./""]"
1617
Add-Content -Path $outfile "COPY [""NuGet.config"", ""./""]"
1718
Add-Content -Path $outfile "COPY [""$solution"", ""./""]"
1819
Add-Content -Path $outfile "RUN dotnet restore ""$solution"""

DockerfileSolutionRestore.txt

76 Bytes
Binary file not shown.

docker-compose.dcproj

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" Sdk="Microsoft.Docker.Sdk" DefaultTargets="Build">
3+
<PropertyGroup Label="Globals">
4+
<ProjectVersion>2.1</ProjectVersion>
5+
<DockerTargetOS>Linux</DockerTargetOS>
6+
<ProjectGuid>{250B824E-6A72-4D6E-8287-CC73F40410E9}</ProjectGuid>
7+
</PropertyGroup>
8+
<ItemGroup>
9+
<None Include="docker-compose.override.yml">
10+
<DependentUpon>docker-compose.yml</DependentUpon>
11+
</None>
12+
<None Include="docker-compose.yml" />
13+
<None Include=".dockerignore" />
14+
<None Include=".env" />
15+
</ItemGroup>
16+
</Project>

deploy/compose/docker-compose.override.yml docker-compose.override.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ services:
259259

260260
webshoppingapigw:
261261
volumes:
262-
- ./Envoy/config/webshopping:/etc/envoy
262+
- ./src/ApiGateways/Envoy:/etc/envoy
263263
ports:
264264
- "5202:80"
265265
- "15202:8001"

0 commit comments

Comments
 (0)