mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
Merge pull request #1754 from AMR-Mannesmann/devcontainer-sqltools
feat(devcontainer): Add mariadb driver and connection settings
This commit is contained in:
commit
e7db934767
1 changed files with 19 additions and 1 deletions
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue