Files
notesnook-sync-server_custo…/.vscode/launch.json
2025-12-15 22:58:25 +05:00

70 lines
2.0 KiB
JSON

{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0",
"configurations": [
{
"name": "Launch Notesnook.API Server",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-notesnook",
"program": "bin/Debug/net9.0/Notesnook.API.dll",
"args": [],
"cwd": "${workspaceFolder}/Notesnook.API",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"MONGODB_CONNECTION_STRING": "mongodb://localhost:27017/notesnook",
"MONGODB_DATABASE_NAME": "notesnook"
}
},
{
"name": "Launch Identity Server",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-identity",
"program": "bin/Debug/net9.0/Streetwriters.Identity.dll",
"args": [],
"cwd": "${workspaceFolder}/Streetwriters.Identity",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development",
"MONGODB_CONNECTION_STRING": "mongodb://localhost:27017/identity",
"MONGODB_DATABASE_NAME": "identity"
}
},
{
"name": "Launch Messenger Server",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-messenger",
"program": "bin/Debug/net9.0/Streetwriters.Messenger.dll",
"args": [],
"cwd": "${workspaceFolder}/Streetwriters.Messenger",
"stopAtEntry": false,
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processId": "${command:pickProcess}"
}
],
"compounds": [
{
"stopAll": true,
"name": "Notesnook",
"configurations": [
"Launch Identity Server",
"Launch Messenger Server",
"Launch Notesnook.API Server"
],
"preLaunchTask": ""
}
]
}