Files
derek d8bc76cf0b
Docker Build and Release Upload / build (push) Has been cancelled
Init commit
2025-07-24 17:10:03 -07:00

26 lines
642 B
JSON

{
"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"
}
}
]
}