-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathMySQLShellPluginDevelopment.code-workspace
107 lines (107 loc) · 3.18 KB
/
MySQLShellPluginDevelopment.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
// cSpell:ignore dbaeumer pylance antlr4 debugpy orta
{
"folders": [
{
"name": "Shell GUI Frontend",
"path": "gui/frontend"
},
{
"name": "VSCode Extension",
"path": "gui/extension"
},
{
"name": "Shell GUI Backend",
"path": "gui/backend"
},
{
"name": "MySQL Database Service Plugin",
"path": "mds_plugin"
},
{
"name": "MySQL REST Service Plugin",
"path": "mrs_plugin"
},
{
"name": "MRS Notes Example",
"path": "mrs_plugin/examples/mrs_notes"
},
{
"name": "MRS Scripts Example",
"path": "mrs_plugin/examples/mrs_scripts"
},
{
"name": "MRS HeatWave Chat",
"path": "mrs_plugin/examples/mrs_chat"
},
{
"name": "Shell Plugin Tools",
"path": "gui/tools"
}
],
"settings": {
"workbench.colorCustomizations": {},
"python.envFile": "${workspaceFolder}/python.env",
"python.analysis.extraPaths": [
"/usr/local/mysql-shell/lib/mysqlsh/python-packages/",
"${workspaceFolder}\\plugins\\rds_plugin",
"/usr/local/mysql-shell/lib/mysqlsh/lib/python3.12/site-packages"
],
"python.autoComplete.extraPaths": [
"/usr/local/mysql-shell/lib/mysqlsh/python-packages/",
"/usr/local/mysql-shell/lib/mysqlsh/lib/python3.12/site-packages",
"${workspaceFolder}\\plugins\\rds_plugin"
],
"liveServer.settings.multiRootWorkspaceName": "MySQL REST Service Plugin",
"jest.runMode": "on-demand",
"jest.disabledWorkspaceFolders": [
"MySQL REST Service Plugin",
"Shell GUI Backend",
"Shell Plugin Tools",
"MySQL Database Service Plugin",
"VSCode Extension",
"MRS Notes Example",
"MRS Scripts Example"
],
"msg.editor.defaultDbConnection": "Localhost 8.0",
"git.ignoreLimitWarning": true,
"antlr4.generation": {
"mode": "internal",
"language": "TypeScript",
"listeners": true,
"visitors": false,
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Attach to Port",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
}
},
{
"name": "Python: Attach using Process Id",
"type": "debugpy",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": []
},
"extensions": {
"recommendations": [
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"ms-python.python",
"ms-python.vscode-pylance",
"orta.vscode-jest"
]
}
}