Files
class-server/.vscode/launch.json
Ryan McGuire 1e8d3abf8a
All checks were successful
Build and Publish / check-chart (push) Successful in 20s
Build and Publish / helm-release (push) Has been skipped
Build and Publish / release (push) Successful in 4m55s
implement class logo
2025-07-08 16:28:53 -04:00

20 lines
375 B
JSON

{
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json",
"version": "0.2.0",
"configurations": [
{
"name": "Run Server",
"type": "delve",
"request": "launch",
"program": "${workspaceFolder}",
"env": {
"APP_NAME": "Class GRPC Server"
},
"args": [
"-config",
"config.yaml"
]
}
]
}