-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsample-launch.json
More file actions
126 lines (125 loc) · 4.8 KB
/
sample-launch.json
File metadata and controls
126 lines (125 loc) · 4.8 KB
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
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Angular Frontend Browser",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}/flexible-graphrag-ui/frontend-angular",
"sourceMaps": true,
"runtimeArgs": [
"--new-window",
"--user-data-dir=${workspaceFolder}/.vscode/chrome-debug-profile-angular",
"--remote-debugging-port=9222"
],
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/src/*",
"webpack:///src/*": "${webRoot}/src/*",
"webpack:///*": "${webRoot}/*",
"webpack:///./~/*": "${webRoot}/node_modules/*",
"webpack:///node_modules/*": "${webRoot}/node_modules/*"
}
},
{
"type": "chrome",
"request": "launch",
"name": "Launch React Frontend Browser",
"url": "http://localhost:5174",
"webRoot": "${workspaceFolder}/flexible-graphrag-ui/frontend-react/src",
"sourceMaps": true,
"runtimeArgs": [
"--new-window",
"--user-data-dir=${workspaceFolder}/.vscode/chrome-debug-profile-react",
"--remote-debugging-port=9223"
],
"sourceMapPathOverrides": {
"/@fs/*": "${workspaceFolder}/*",
"/@vite/*": "${workspaceFolder}/node_modules/.vite/*",
"/@id/*": "${workspaceFolder}/node_modules/*",
"/src/*": "${workspaceFolder}/flexible-graphrag-ui/frontend-react/src/*"
}
},
{
"type": "chrome",
"request": "launch",
"name": "Launch Vue Frontend Browser",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/flexible-graphrag-ui/frontend-vue/src",
"sourceMaps": true,
"runtimeArgs": [
"--new-window",
"--user-data-dir=${workspaceFolder}/.vscode/chrome-debug-profile-vue",
"--remote-debugging-port=9224"
],
"sourceMapPathOverrides": {
"/@fs/*": "${workspaceFolder}/*",
"/@vite/*": "${workspaceFolder}/node_modules/.vite/*",
"/@id/*": "${workspaceFolder}/node_modules/*",
"/src/*": "${workspaceFolder}/flexible-graphrag-ui/frontend-vue/src/*"
}
},
{
"type": "node-terminal",
"name": "Run Angular Dev Server",
"request": "launch",
"command": "npm start",
"cwd": "${workspaceFolder}/flexible-graphrag-ui/frontend-angular"
},
{
"type": "node-terminal",
"name": "Run React Dev Server",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder}/flexible-graphrag-ui/frontend-react"
},
{
"type": "node-terminal",
"name": "Run Vue Dev Server",
"request": "launch",
"command": "npm run dev",
"cwd": "${workspaceFolder}/flexible-graphrag-ui/frontend-vue"
},
{
"name": "Python: FastAPI Backend",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"main:app",
"--reload",
"--port",
"8000"
],
"cwd": "${workspaceFolder}/flexible-graphrag",
"python": "${command:python.interpreterPath}",
"justMyCode": true
}
],
"compounds": [
{
"name": "Angular Dev Server and Frontend Browser",
"configurations": ["Run Angular Dev Server", "Launch Angular Frontend Browser"]
},
{
"name": "Full Stack with Angular and Python",
"configurations": ["Python: FastAPI Backend", "Run Angular Dev Server", "Launch Angular Frontend Browser"]
},
{
"name": "React Dev Server and Frontend Browser",
"configurations": ["Run React Dev Server", "Launch React Frontend Browser"]
},
{
"name": "Full Stack with React and Python",
"configurations": ["Python: FastAPI Backend", "Run React Dev Server", "Launch React Frontend Browser"]
},
{
"name": "Vue Dev Server and Frontend Browser",
"configurations": ["Run Vue Dev Server", "Launch Vue Frontend Browser"]
},
{
"name": "Full Stack with Vue and Python",
"configurations": ["Python: FastAPI Backend", "Run Vue Dev Server", "Launch Vue Frontend Browser"]
}
]
}