feat(devcontainer): Add mariadb driver and connection settings

actually make use of the already installed sqltools
This commit is contained in:
Daniel Radl 2025-11-26 13:08:31 +01:00 committed by GitHub
parent d8a917e5bd
commit 5a535cc8fa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9,6 +9,7 @@
"ms-vscode.live-server",
"grapecity.gc-excelviewer",
"mtxr.sqltools",
"mtxr.sqltools-driver-mysql",
"visualstudioexptteam.vscodeintellicode"
],
"settings": {
@ -18,7 +19,24 @@
}
},
"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"
}
]
}
}
},