Skip to content

Commit 2669f35

Browse files
committed
feat: add SQL Tools configuration for PostgreSQL database connection
1 parent 60a12bf commit 2669f35

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
"redhat.vscode-yaml",
3131
"github.vscode-github-actions",
3232
"EditorConfig.EditorConfig",
33-
"streetsidesoftware.code-spell-checker"
33+
"streetsidesoftware.code-spell-checker",
34+
"mtxr.sqltools",
35+
"mtxr.sqltools-driver-pg"
3436
]
3537
}
3638
},

.vscode/settings.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
{
2-
"sqltools.connections": [],
2+
"sqltools.connections": [
3+
{
4+
"ssh": "Disabled",
5+
"previewLimit": 50,
6+
"server": "localhost",
7+
"port": 5432,
8+
"askForPassword": true,
9+
"driver": "PostgreSQL",
10+
"name": "bankdb",
11+
"group": "banktracker",
12+
"username": "bankuser",
13+
"database": "bankdb"
14+
}
15+
],
316
"cSpell.words": [
417
"appsettings",
518
"aspnet",

0 commit comments

Comments
 (0)