1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Prefer compounds for preLaunchTasks (#3446)

This commit is contained in:
Matt Gibson 2023-11-20 13:26:36 -05:00 committed by GitHub
parent 04253d9bca
commit c8fd81a10e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 264 additions and 87 deletions

292
.vscode/launch.json vendored
View File

@ -7,94 +7,251 @@
{ {
"name": "Min Server", "name": "Min Server",
"configurations": [ "configurations": [
"Identity", "run-Identity",
"API" "run-API"
], ],
"presentation": { "presentation": {
"hidden": false, "hidden": false,
"group": "AA_compounds", "group": "AA_compounds",
"order": 1 "order": 1
}, },
"preLaunchTask": "buildIdentityApi",
"stopAll": true "stopAll": true
}, },
{ {
"name": "Admin, API, Identity", "name": "Admin, API, Identity",
"configurations": [ "configurations": [
"Admin", "run-Admin",
"API", "run-API",
"Identity" "run-Identity"
], ],
"presentation": { "presentation": {
"hidden": false, "hidden": false,
"group": "AA_compounds", "group": "AA_compounds",
"order": 3 "order": 3
}, },
"preLaunchTask": "buildIdentityApiAdmin",
"stopAll": true "stopAll": true
}, },
{ {
"name": "Full Server", "name": "Full Server",
"configurations": [ "configurations": [
"Admin", "run-Admin",
"API", "run-API",
"EventsProcessor", "run-EventsProcessor",
"Identity", "run-Identity",
"Sso", "run-Sso",
"Icons", "run-Icons",
"Billing", "run-Billing",
"Notifications" "run-Notifications"
], ],
"presentation": { "presentation": {
"hidden": false, "hidden": false,
"group": "AA_compounds", "group": "AA_compounds",
"order": 4 "order": 4
}, },
"preLaunchTask": "buildFullServer",
"stopAll": true "stopAll": true
}, },
{ {
"name": "Self Host: Bit", "name": "Self Host: Bit",
"configurations": [ "configurations": [
"Admin-SelfHost", "run-Admin-SelfHost",
"API-SelfHost", "run-API-SelfHost",
"EventsProcessor-SelfHost", "run-EventsProcessor-SelfHost",
"Identity-SelfHost", "run-Identity-SelfHost",
"Sso-SelfHost", "run-Sso-SelfHost",
"Notifications-SelfHost" "run-Notifications-SelfHost"
], ],
"presentation": { "presentation": {
"hidden": false, "hidden": false,
"group": "AA_compounds", "group": "AA_compounds",
"order": 2 "order": 2
}, },
"preLaunchTask": "buildSelfHostBit",
"stopAll": true "stopAll": true
}, },
{ {
"name": "Self Host: OSS", "name": "Self Host: OSS",
"configurations": [ "configurations": [
"Admin-SelfHost", "run-Admin-SelfHost",
"API-SelfHost", "run-API-SelfHost",
"EventsProcessor-SelfHost", "run-EventsProcessor-SelfHost",
"Identity-SelfHost", "run-Identity-SelfHost",
], ],
"presentation": { "presentation": {
"hidden": false, "hidden": false,
"group": "AA_compounds", "group": "AA_compounds",
"order": 99 "order": 99
}, },
"preLaunchTask": "buildSelfHostOss",
"stopAll": true "stopAll": true
} },
],
"configurations": [
{ {
"name": "Identity", "name": "Admin",
"configurations": [
"run-Admin"
],
"presentation": { "presentation": {
"hidden": false, "hidden": false,
"group": "cloud", "group": "cloud",
"order": 10 },
"preLaunchTask": "buildAdmin",
},
{
"name": "API",
"configurations": [
"run-API"
],
"presentation": {
"hidden": false,
"group": "cloud",
},
"preLaunchTask": "buildAPI",
},
{
"name": "Billing",
"configurations": [
"run-Billing"
],
"presentation": {
"hidden": false,
"group": "cloud",
},
"preLaunchTask": "buildBilling",
},
{
"name": "Events Processor",
"configurations": [
"run-EventsProcessor"
],
"presentation": {
"hidden": false,
"group": "cloud",
},
"preLaunchTask": "buildEventsProcessor",
},
{
"name": "Icons",
"configurations": [
"run-Icons"
],
"presentation": {
"hidden": false,
"group": "cloud",
},
"preLaunchTask": "buildIcons",
},
{
"name": "Identity",
"configurations": [
"run-Identity"
],
"presentation": {
"hidden": false,
"group": "cloud",
},
"preLaunchTask": "buildIdentity",
},
{
"name": "Notifications",
"configurations": [
"run-Notifications"
],
"presentation": {
"hidden": false,
"group": "cloud",
},
"preLaunchTask": "buildNotifications",
},
{
"name": "SSO",
"configurations": [
"run-Sso"
],
"presentation": {
"hidden": false,
"group": "cloud",
},
"preLaunchTask": "buildSso",
},
{
"name": "Admin Self Host",
"configurations": [
"run-Admin-SelfHost"
],
"presentation": {
"hidden": false,
"group": "self-host",
},
"preLaunchTask": "buildAdmin",
},
{
"name": "API Self Host",
"configurations": [
"run-API-SelfHost"
],
"presentation": {
"hidden": false,
"group": "self-host",
},
"preLaunchTask": "buildAPI",
},
{
"name": "Events Processor Self Host",
"configurations": [
"run-EventsProcessor-SelfHost"
],
"presentation": {
"hidden": false,
"group": "self-host",
},
"preLaunchTask": "buildEventsProcessor",
},
{
"name": "Identity Self Host",
"configurations": [
"run-Identity-SelfHost"
],
"presentation": {
"hidden": false,
"group": "self-host",
},
"preLaunchTask": "buildIdentity",
},
{
"name": "Notifications Self Host",
"configurations": [
"run-Notifications-SelfHost"
],
"presentation": {
"hidden": false,
"group": "self-host",
},
"preLaunchTask": "buildNotifications",
},
{
"name": "SSO Self Host",
"configurations": [
"run-Sso-SelfHost"
],
"presentation": {
"hidden": false,
"group": "self-host",
},
"preLaunchTask": "buildSso",
},
],
"configurations": [
// Configurations represent run-only scenarios so that they can be used in multiple compounds
{
"name": "run-Identity",
"presentation": {
"hidden": true,
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildIdentity",
"program": "${workspaceFolder}/src/Identity/bin/Debug/net6.0/Identity.dll", "program": "${workspaceFolder}/src/Identity/bin/Debug/net6.0/Identity.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/Identity", "cwd": "${workspaceFolder}/src/Identity",
@ -107,16 +264,13 @@
} }
}, },
{ {
"name": "API", "name": "run-API",
"presentation": { "presentation": {
"hidden": false, "hidden": true,
"group": "cloud",
"order": 10
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildAPI",
"program": "${workspaceFolder}/src/Api/bin/Debug/net6.0/Api.dll", "program": "${workspaceFolder}/src/Api/bin/Debug/net6.0/Api.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/Api", "cwd": "${workspaceFolder}/src/Api",
@ -129,16 +283,13 @@
} }
}, },
{ {
"name": "Billing", "name": "run-Billing",
"presentation": { "presentation": {
"hidden": false, "hidden": true,
"group": "cloud",
"order": 10
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildBilling",
"program": "${workspaceFolder}/src/Billing/bin/Debug/net6.0/Billing.dll", "program": "${workspaceFolder}/src/Billing/bin/Debug/net6.0/Billing.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/Billing", "cwd": "${workspaceFolder}/src/Billing",
@ -151,16 +302,13 @@
} }
}, },
{ {
"name": "Admin", "name": "run-Admin",
"presentation": { "presentation": {
"hidden": false, "hidden": true,
"group": "cloud",
"order": 20
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildAdmin",
"OS-COMMENT4": "If you have changed target frameworks, make sure to update the program path.", "OS-COMMENT4": "If you have changed target frameworks, make sure to update the program path.",
"program": "${workspaceFolder}/src/Admin/bin/Debug/net6.0/Admin.dll", "program": "${workspaceFolder}/src/Admin/bin/Debug/net6.0/Admin.dll",
"args": [], "args": [],
@ -175,16 +323,13 @@
} }
}, },
{ {
"name": "Sso", "name": "run-Sso",
"presentation": { "presentation": {
"hidden": false, "hidden": true,
"group": "cloud",
"order": 50
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildSso",
"program": "${workspaceFolder}/bitwarden_license/src/Sso/bin/Debug/net6.0/Sso.dll", "program": "${workspaceFolder}/bitwarden_license/src/Sso/bin/Debug/net6.0/Sso.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/bitwarden_license/src/Sso", "cwd": "${workspaceFolder}/bitwarden_license/src/Sso",
@ -197,16 +342,13 @@
} }
}, },
{ {
"name": "EventsProcessor", "name": "run-EventsProcessor",
"presentation": { "presentation": {
"hidden": false, "hidden": true,
"group": "cloud",
"order": 90
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildEventsProcessor",
"program": "${workspaceFolder}/src/EventsProcessor/bin/Debug/net6.0/EventsProcessor.dll", "program": "${workspaceFolder}/src/EventsProcessor/bin/Debug/net6.0/EventsProcessor.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/EventsProcessor", "cwd": "${workspaceFolder}/src/EventsProcessor",
@ -219,16 +361,13 @@
} }
}, },
{ {
"name": "Icons", "name": "run-Icons",
"presentation": { "presentation": {
"hidden": false, "hidden": true,
"group": "cloud",
"order": 90
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildIcons",
"program": "${workspaceFolder}/src/Icons/bin/Debug/net6.0/Icons.dll", "program": "${workspaceFolder}/src/Icons/bin/Debug/net6.0/Icons.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/Icons", "cwd": "${workspaceFolder}/src/Icons",
@ -241,16 +380,13 @@
} }
}, },
{ {
"name": "Notifications", "name": "run-Notifications",
"presentation": { "presentation": {
"hidden": true, "hidden": true,
"group": "cloud",
"order": 100
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildNotifications",
"program": "${workspaceFolder}/src/Notifications/bin/Debug/net6.0/Notifications.dll", "program": "${workspaceFolder}/src/Notifications/bin/Debug/net6.0/Notifications.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/Notifications", "cwd": "${workspaceFolder}/src/Notifications",
@ -263,16 +399,13 @@
} }
}, },
{ {
"name": "Identity-SelfHost", "name": "run-Identity-SelfHost",
"presentation": { "presentation": {
"hidden": true, "hidden": true,
"group": "self-host",
"order": 999
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildIdentity",
"program": "${workspaceFolder}/src/Identity/bin/Debug/net6.0/Identity.dll", "program": "${workspaceFolder}/src/Identity/bin/Debug/net6.0/Identity.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/Identity", "cwd": "${workspaceFolder}/src/Identity",
@ -287,16 +420,13 @@
} }
}, },
{ {
"name": "API-SelfHost", "name": "run-API-SelfHost",
"presentation": { "presentation": {
"hidden": true, "hidden": true,
"group": "self-host",
"order": 999
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildAPI",
"program": "${workspaceFolder}/src/Api/bin/Debug/net6.0/Api.dll", "program": "${workspaceFolder}/src/Api/bin/Debug/net6.0/Api.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/Api", "cwd": "${workspaceFolder}/src/Api",
@ -311,16 +441,13 @@
} }
}, },
{ {
"name": "Admin-SelfHost", "name": "run-Admin-SelfHost",
"presentation": { "presentation": {
"hidden": true, "hidden": true,
"group": "self-host",
"order": 999
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildAdmin",
"OS-COMMENT4": "If you have changed target frameworks, make sure to update the program path.", "OS-COMMENT4": "If you have changed target frameworks, make sure to update the program path.",
"program": "${workspaceFolder}/src/Admin/bin/Debug/net6.0/Admin.dll", "program": "${workspaceFolder}/src/Admin/bin/Debug/net6.0/Admin.dll",
"args": [], "args": [],
@ -337,16 +464,13 @@
} }
}, },
{ {
"name": "Sso-SelfHost", "name": "run-Sso-SelfHost",
"presentation": { "presentation": {
"hidden": true, "hidden": true,
"group": "self-host",
"order": 999
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildSso",
"program": "${workspaceFolder}/bitwarden_license/src/Sso/bin/Debug/net6.0/Sso.dll", "program": "${workspaceFolder}/bitwarden_license/src/Sso/bin/Debug/net6.0/Sso.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/bitwarden_license/src/Sso", "cwd": "${workspaceFolder}/bitwarden_license/src/Sso",
@ -361,16 +485,13 @@
} }
}, },
{ {
"name": "Notifications-SelfHost", "name": "run-Notifications-SelfHost",
"presentation": { "presentation": {
"hidden": true, "hidden": true,
"group": "self-host",
"order": 999
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildNotifications",
"program": "${workspaceFolder}/src/Notifications/bin/Debug/net6.0/Notifications.dll", "program": "${workspaceFolder}/src/Notifications/bin/Debug/net6.0/Notifications.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/Notifications", "cwd": "${workspaceFolder}/src/Notifications",
@ -385,16 +506,13 @@
} }
}, },
{ {
"name": "EventsProcessor-SelfHost", "name": "run-EventsProcessor-SelfHost",
"presentation": { "presentation": {
"hidden": true, "hidden": true,
"group": "self-host",
"order": 999
}, },
"requireExactSource": true, "requireExactSource": true,
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "buildEventsProcessor",
"program": "${workspaceFolder}/src/EventsProcessor/bin/Debug/net6.0/EventsProcessor.dll", "program": "${workspaceFolder}/src/EventsProcessor/bin/Debug/net6.0/EventsProcessor.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/src/EventsProcessor", "cwd": "${workspaceFolder}/src/EventsProcessor",

59
.vscode/tasks.json vendored
View File

@ -1,6 +1,65 @@
{ {
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{
"label": "buildIdentityApi",
"dependsOrder": "sequence",
"dependsOn": [
"buildIdentity",
"buildAPI"
],
"problemMatcher": [
"$msCompile"
]
},
{
"label": "buildIdentityApiAdmin",
"dependsOrder": "sequence",
"dependsOn": [
"buildIdentity",
"buildAPI",
"buildAdmin"
],
"problemMatcher": [
"$msCompile"
]
},
{
"label": "buildFullServer",
"dependsOrder": "sequence",
"dependsOn": [
"buildAdmin",
"buildAPI",
"buildEventsProcessor",
"buildIdentity",
"buildSso",
"buildIcons",
"buildBilling",
"buildNotifications",
],
},
{
"label": "buildSelfHostBit",
"dependsOrder": "sequence",
"dependsOn": [
"buildAdmin",
"buildAPI",
"buildEventsProcessor",
"buildIdentity",
"buildSso",
"buildNotifications",
],
},
{
"label": "buildSelfHostOss",
"dependsOrder": "sequence",
"dependsOn": [
"buildAdmin",
"buildAPI",
"buildEventsProcessor",
"buildIdentity",
],
},
{ {
"label": "buildIcons", "label": "buildIcons",
"command": "dotnet", "command": "dotnet",