mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 07:05:08 +00:00
feat(devcontainer): Add mariadb driver and connection settings
actually make use of the already installed sqltools
This commit is contained in:
parent
d8a917e5bd
commit
5a535cc8fa
1 changed files with 19 additions and 1 deletions
|
|
@ -9,6 +9,7 @@
|
||||||
"ms-vscode.live-server",
|
"ms-vscode.live-server",
|
||||||
"grapecity.gc-excelviewer",
|
"grapecity.gc-excelviewer",
|
||||||
"mtxr.sqltools",
|
"mtxr.sqltools",
|
||||||
|
"mtxr.sqltools-driver-mysql",
|
||||||
"visualstudioexptteam.vscodeintellicode"
|
"visualstudioexptteam.vscodeintellicode"
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
|
|
@ -18,7 +19,24 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"terminal.integrated.defaultProfile.linux": "frappe bash",
|
"terminal.integrated.defaultProfile.linux": "frappe bash",
|
||||||
"debug.node.autoAttach": "disabled"
|
"debug.node.autoAttach": "disabled",
|
||||||
|
"sqltools.connections": [
|
||||||
|
{
|
||||||
|
"mysqlOptions": {
|
||||||
|
"authProtocol": "default",
|
||||||
|
"enableSsl": "Disabled"
|
||||||
|
},
|
||||||
|
"ssh": "Disabled",
|
||||||
|
"previewLimit": 50,
|
||||||
|
"server": "mariadb",
|
||||||
|
"port": 3306,
|
||||||
|
"driver": "MariaDB",
|
||||||
|
"name": "MariaDB",
|
||||||
|
"username": "root",
|
||||||
|
"password": "123",
|
||||||
|
"database": "mysql"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue