-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy path.dblab.yaml
More file actions
74 lines (74 loc) · 1.59 KB
/
.dblab.yaml
File metadata and controls
74 lines (74 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
database:
- name: "test"
host: "localhost"
port: 5432
db: "users"
password: "password"
user: "postgres"
schema: "public"
driver: "postgres"
- name: "prod"
# example endpoint
host: "mydb.123456789012.us-east-1.rds.amazonaws.com"
port: 5432
db: "users"
password: "password"
user: "postgres"
schema: "public"
driver: "postgres"
- name: "oracle"
host: "localhost"
port: 1521
db: "FREEPDB1"
password: "password"
user: "system"
driver: "oracle"
ssl: "enable"
wallet: "path/to/wallet"
ssl-verify: true
trace: "trace.log"
- name: "sqlserver"
driver: "sqlserver"
host: "localhost"
port: 1433
db: "msdb"
password: "5@klkbN#ABC"
user: "SA"
- name: "ssh-tunnel"
host: "localhost"
port: 5432
db: "users"
password: "password"
user: "postgres"
schema: "public"
driver: "postgres"
ssh-host: "example.com"
ssh-port: 22
ssh-user: "ssh-user"
ssh-pass: "password"
- name: "realistic-ssh-example"
host: "rds-endpoint.region.rds.amazonaws.com"
port: 5432
db: "database_name"
user: "db_user"
password: "password"
schema: "schema_name"
driver: "postgres"
ssl: "require"
ssh-host: "bastion.host.ip"
ssh-port: 22
ssh-user: "ec2-user"
ssh-key-file: "/path/to/ssh/key.pem"
ssh-key-pass: "hiuwiewnc092"
limit: 50
keybindings:
execute-query: 'ctrl+e'
next-tab: 'tab'
prev-tab: 'shift+tab'
end-of-line: '$'
beginning-of-line: '0'
navigation:
up: 'ctrl+k'
down: 'ctrl+j'
left: 'ctrl+h'
right: 'ctrl+l'