forked from darklang/dark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
70 lines (70 loc) · 2.43 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}", // open another instance of vs code
"args": ["--extensionDevelopmentPath=${workspaceRoot}/vscode-extension"],
"outFiles": ["${workspaceRoot}/vscode-extension/client/out/**/*.js"],
"autoAttachChildProcesses": true,
"preLaunchTask": { "type": "npm", "script": "watch" },
"internalConsoleOptions": "openOnSessionStart",
"env": { "VSCODE_DEBUG_MODE": "true"}
},
{
"name": "BwdServer",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-bwdserver",
"program": "/home/dark/app/backend/Build/out/BwdServer/Debug/net8.0/linux-x64/BwdServer",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "Tests",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-tests",
"program": "/home/dark/app/backend/Build/out/Tests/Debug/net8.0/Tests",
//"args": ["--filter-test-list", "HttpClient"],
"args": ["--filter-test-list", "ematch"],
"cwd": "${workspaceFolder}/backend",
"stopAtEntry": false,
"console": "internalConsole",
"env": {
"DARK_CONFIG_TELEMETRY_EXPORTER": "none",
"DARK_CONFIG_ROLLBAR_ENABLED": "n",
"DARK_CONFIG_DB_HOST": "localhost",
"DARK_CONFIG_DB_DBNAME": "testdb",
"DARK_CONFIG_DB_USER": "dark",
"DARK_CONFIG_DB_PASSWORD": "darklang"
}
},
{
"name": "Benchmark",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-benchmark",
"program": "/home/dark/app/backend/Build/out/Benchmark/Debug/net8.0/linux-x64/Benchmark",
"args": ["fizzbuzz"],
"cwd": "${workspaceFolder}/backend",
"stopAtEntry": true,
"console": "internalConsole",
"env": {
"DARK_CONFIG_TELEMETRY_EXPORTER": "none",
"DARK_CONFIG_ROLLBAR_ENABLED": "n",
"DARK_CONFIG_DB_HOST": "localhost",
"DARK_CONFIG_DB_DBNAME": "testdb",
"DARK_CONFIG_DB_USER": "dark",
"DARK_CONFIG_DB_PASSWORD": "darklang"
}
}
]
}