mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Add events collection to full server launch configs (#4039)
This commit is contained in:
parent
29a69b76a4
commit
bc0a35259d
56
.vscode/launch.json
vendored
56
.vscode/launch.json
vendored
@ -38,6 +38,7 @@
|
|||||||
"configurations": [
|
"configurations": [
|
||||||
"run-Admin",
|
"run-Admin",
|
||||||
"run-API",
|
"run-API",
|
||||||
|
"run-Events",
|
||||||
"run-EventsProcessor",
|
"run-EventsProcessor",
|
||||||
"run-Identity",
|
"run-Identity",
|
||||||
"run-Sso",
|
"run-Sso",
|
||||||
@ -58,6 +59,7 @@
|
|||||||
"configurations": [
|
"configurations": [
|
||||||
"run-Admin-SelfHost",
|
"run-Admin-SelfHost",
|
||||||
"run-API-SelfHost",
|
"run-API-SelfHost",
|
||||||
|
"run-Events-SelfHost",
|
||||||
"run-EventsProcessor-SelfHost",
|
"run-EventsProcessor-SelfHost",
|
||||||
"run-Identity-SelfHost",
|
"run-Identity-SelfHost",
|
||||||
"run-Sso-SelfHost",
|
"run-Sso-SelfHost",
|
||||||
@ -76,6 +78,7 @@
|
|||||||
"configurations": [
|
"configurations": [
|
||||||
"run-Admin-SelfHost",
|
"run-Admin-SelfHost",
|
||||||
"run-API-SelfHost",
|
"run-API-SelfHost",
|
||||||
|
"run-Events-SelfHost",
|
||||||
"run-EventsProcessor-SelfHost",
|
"run-EventsProcessor-SelfHost",
|
||||||
"run-Identity-SelfHost",
|
"run-Identity-SelfHost",
|
||||||
],
|
],
|
||||||
@ -120,6 +123,17 @@
|
|||||||
},
|
},
|
||||||
"preLaunchTask": "buildBilling",
|
"preLaunchTask": "buildBilling",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Events",
|
||||||
|
"configurations": [
|
||||||
|
"run-Events"
|
||||||
|
],
|
||||||
|
"presentation": {
|
||||||
|
"hidden": false,
|
||||||
|
"group": "cloud",
|
||||||
|
},
|
||||||
|
"preLaunchTask": "buildEvents",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Events Processor",
|
"name": "Events Processor",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
@ -341,6 +355,25 @@
|
|||||||
"/Views": "${workspaceFolder}/Views"
|
"/Views": "${workspaceFolder}/Views"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "run-Events",
|
||||||
|
"presentation": {
|
||||||
|
"hidden": true,
|
||||||
|
},
|
||||||
|
"requireExactSource": true,
|
||||||
|
"type": "coreclr",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/src/Events/bin/Debug/net8.0/Events.dll",
|
||||||
|
"args": [],
|
||||||
|
"cwd": "${workspaceFolder}/src/Events",
|
||||||
|
"stopAtEntry": false,
|
||||||
|
"env": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
||||||
|
},
|
||||||
|
"sourceFileMap": {
|
||||||
|
"/Views": "${workspaceFolder}/Views"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "run-EventsProcessor",
|
"name": "run-EventsProcessor",
|
||||||
"presentation": {
|
"presentation": {
|
||||||
@ -505,6 +538,27 @@
|
|||||||
"/Views": "${workspaceFolder}/Views"
|
"/Views": "${workspaceFolder}/Views"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "run-Events-SelfHost",
|
||||||
|
"presentation": {
|
||||||
|
"hidden": true,
|
||||||
|
},
|
||||||
|
"requireExactSource": true,
|
||||||
|
"type": "coreclr",
|
||||||
|
"request": "launch",
|
||||||
|
"program": "${workspaceFolder}/src/Events/bin/Debug/net8.0/Events.dll",
|
||||||
|
"args": [],
|
||||||
|
"cwd": "${workspaceFolder}/src/Events",
|
||||||
|
"stopAtEntry": false,
|
||||||
|
"env": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
||||||
|
"ASPNETCORE_URLS": "http://localhost:46274",
|
||||||
|
"developSelfHosted": "true",
|
||||||
|
},
|
||||||
|
"sourceFileMap": {
|
||||||
|
"/Views": "${workspaceFolder}/Views"
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "run-EventsProcessor-SelfHost",
|
"name": "run-EventsProcessor-SelfHost",
|
||||||
"presentation": {
|
"presentation": {
|
||||||
@ -519,7 +573,7 @@
|
|||||||
"stopAtEntry": false,
|
"stopAtEntry": false,
|
||||||
"env": {
|
"env": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development",
|
"ASPNETCORE_ENVIRONMENT": "Development",
|
||||||
"ASPNETCORE_URLS": "http://localhost:46274",
|
"ASPNETCORE_URLS": "http://localhost:54103",
|
||||||
"developSelfHosted": "true",
|
"developSelfHosted": "true",
|
||||||
},
|
},
|
||||||
"sourceFileMap": {
|
"sourceFileMap": {
|
||||||
|
12
.vscode/tasks.json
vendored
12
.vscode/tasks.json
vendored
@ -96,6 +96,18 @@
|
|||||||
],
|
],
|
||||||
"problemMatcher": "$msCompile"
|
"problemMatcher": "$msCompile"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"label": "buildEvents",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "process",
|
||||||
|
"args": [
|
||||||
|
"build",
|
||||||
|
"${workspaceFolder}/src/Events/Events.csproj",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "buildEventsProcessor",
|
"label": "buildEventsProcessor",
|
||||||
"command": "dotnet",
|
"command": "dotnet",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user