-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
launch.json
89 lines (88 loc) · 2.88 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
// 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": "Attach to ApiServer",
"type": "coreclr",
"request": "attach",
"program": "/home/dark/app/backend/Build/out/ApiServer/Debug/net6.0/linux-x64/ApiServer",
"stopAtEntry": true
},
{
"name": "ApiServer",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-apiserver",
"program": "/home/dark/app/backend/Build/out/ApiServer/Debug/net6.0/linux-x64/ApiServer",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"console": "internalConsole"
},
{
"name": "BwdServer",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-bwdserver",
"program": "/home/dark/app/backend/Build/out/BwdServer/Debug/net6.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/net6.0/linux-x64/Tests",
//"args": ["--filter-test-list", "HttpClient"],
"args": ["--filter-test-case", "response-string-text"],
"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/net6.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"
}
},
{
"name": "FuzzTests",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-fuzztests",
"program": "/home/dark/app/backend/Build/out/FuzzTests/Debug/net6.0/linux-x64/FuzzTests",
"args": ["--filter-test-list", "executePure"],
"cwd": "${workspaceFolder}/backend",
"stopAtEntry": false,
"console": "internalConsole",
"env": {}
}
]
}