Init commit
Docker Build and Release Upload / build (push) Has been cancelled

This commit is contained in:
2025-07-24 17:10:03 -07:00
commit d8bc76cf0b
57 changed files with 11280 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch ASP.NET Core backend",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-all",
"program": "Server.dll",
"args": [],
"cwd": "${workspaceFolder}/debug/",
"stopAtEntry": false,
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"PaymentService": "StripeIntent"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
}
]
}
+47
View File
@@ -0,0 +1,47 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "server-build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/src/Server/Server.csproj",
"-o",
"${workspaceFolder}/debug/",
],
"problemMatcher": "$msCompile"
},
{
"label": "client-build",
"command": "ng",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/src/Client"
},
"args": [
"build",
"--base-href=http://localhost:5000"
],
"problemMatcher": "$msCompile"
},
{
"label": "client-packages",
"command": "npm",
"type": "process",
"options": {
"cwd": "${workspaceFolder}/src/Client"
},
"args": [
"install"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-all",
"dependsOn": ["client-packages", "client-build", "server-build" ],
"dependsOrder": "sequence"
}
]
}