mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 23:05:09 +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",
|
"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