Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
chore: Add PostgreSQL config for SQLTools
Browse files Browse the repository at this point in the history
  • Loading branch information
pan93412 committed Aug 19, 2024
1 parent 08db60a commit e880f23
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
{
"editor.formatOnSave": true,
"rust-analyzer.cargo.features": ["test_database"]
"rust-analyzer.cargo.features": ["test_database"],
"sqltools.connections": [
{
"previewLimit": 50,
"server": "localhost",
"port": 5432,
"driver": "PostgreSQL",
"password": "postgres",
"username": "postgres",
"database": "postgres",
"name": "backend"
}
]
}

0 comments on commit e880f23

Please sign in to comment.