forked from mysql/mysql-shell-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMySQLShellPluginDevelopment.code-workspace
75 lines (75 loc) · 2.12 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
{
"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": "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.9/site-packages"
],
"python.autoComplete.extraPaths": [
"/usr/local/mysql-shell/lib/mysqlsh/python-packages/",
"/usr/local/mysql-shell/lib/mysqlsh/lib/python3.9/site-packages",
"${workspaceFolder}\\plugins\\rds_plugin"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Attach to Port",
"type": "python",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
}
},
{
"name": "Python: Attach using Process Id",
"type": "python",
"request": "attach",
"processId": "${command:pickProcess}"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": []
},
"extensions": {
// cSpell:ignore dbaeumer pylance
"recommendations": [
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"ms-python.python",
"ms-python.vscode-pylance"
]
}
}