-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathPriorAuth.code-workspace
133 lines (133 loc) · 3.29 KB
/
PriorAuth.code-workspace
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"folders": [
{
"path": "../test-ehr"
},
{
"name": "CRD-CDS-Library",
"path": "../CRD/server/CDS-Library"
},
{
"path": "../CRD"
},
{
"path": "../crd-request-generator"
},
{
"path": "../dtr"
},
{
"name": "PriorAuth-CDS-Library",
"path": "CDS-Library"
},
{
"path": "."
},
{
"path": "../prior-auth-client"
},
{
"path": "../fhir-x12"
},
{
"path": "../fhir-x12-frontend"
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"postDebugTask": "Terminate All Tasks",
"name": "Post Debug Task - Terminate Chrome (This is not a Debugger)",
"request": "launch",
"type": "node"
},
],
"compounds": [
{
"name": "Debug All DRLS PAS Applications (Attach Docker)",
"stopAll": true,
"preLaunchTask": "Launch Chrome in Debug Mode",
"configurations": [
"Debug CRD (Local + Docker)",
"Debug DTR Backend (Docker)",
"Debug Test-EHR (Local + Docker)",
"Debug DTR Frontend (Attach Local + Docker)",
"Debug CRD-Request-Generator (Attach Docker)",
"Debug Prior Auth (Local + Docker)",
"Debug Prior Auth Client (Local + Docker)",
// "Debug FHIR-X12 Backend (Docker)",
// "Debug FHIR-X12 Frontend (Attach Docker)",
"Post Debug Task - Terminate Chrome (This is not a Debugger)"
],
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Launch Chrome in Debug Mode",
"linux": {
"command": "google-chrome http://localhost:3000 http://localhost:3015 http://localhost:3005/register --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug"
},
"osx": {
"command": "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome http://localhost:3000 http://localhost:3015 http://localhost:3005/register --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug"
},
"windows": {
"command": "for /f \"usebackq tokens=1,2,3,4,5\" %a in (`reg query HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\ /s /f \\chrome.exe ^| findstr Application`) do set CHROMEPATH=%c%d%e & set CHROMEPATH=%CHROMEPATH:ProgramFiles=Program Files% & \"%CHROMEPATH%\" http://localhost:3000 http://localhost:3015 http://localhost:3005/register --remote-debugging-port=9222 --user-data-dir=/tmp/chrome-debug"
},
"presentation": {
"close": true,
},
"isBackground": true,
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": ".",
}
}
]
},
{
"label": "Terminate All Tasks",
"command": "echo ${input:terminate}",
"type": "shell",
"problemMatcher": []
}
],
"inputs": [
{
"id": "terminate",
"type": "command",
"command": "workbench.action.tasks.terminate",
"args": "terminateAll"
}
]
},
"settings": {
"debug.onTaskErrors": "debugAnyway"
},
"extensions": {
"recommendations": [
"ms-azuretools.vscode-docker",
"vscjava.vscode-java-debug",
"cqframework.cql",
"mitre-health.vscode-language-fsh",
"redhat.java",
"mongodb.mongodb-vscode",
"VisualStudioExptTeam.vscodeintellicode"
]
},
}