-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnections.example.json
More file actions
42 lines (42 loc) · 897 Bytes
/
connections.example.json
File metadata and controls
42 lines (42 loc) · 897 Bytes
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
[
{
"name": "Local PostgreSQL",
"type": "postgresql",
"host": "localhost",
"port": 5432,
"database": "mydb",
"username": "postgres",
"password": "your_password_here",
"ssl": false
},
{
"name": "Production Database",
"type": "postgresql",
"host": "db.example.com",
"port": 5432,
"database": "production",
"username": "admin",
"password": "secure_password",
"ssl": true
},
{
"name": "Development Server",
"type": "postgresql",
"host": "dev.example.com",
"port": 5432,
"database": "devdb",
"username": "devuser",
"password": "devpassword",
"ssl": false
},
{
"name": "Turso Database",
"type": "turso",
"host": "libsql://your-database-name.turso.io",
"port": 443,
"database": "main",
"username": "turso",
"password": "your_turso_auth_token",
"ssl": true
}
]