-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
42 lines (42 loc) · 923 Bytes
/
config.example.json
File metadata and controls
42 lines (42 loc) · 923 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
{
"connections": [
{
"label": "production",
"host": "db.example.com",
"port": 5432,
"user": "readonly_user",
"password": "your_password",
"database": "myapp",
"enabled": true,
"ssl": true,
"readOnly": true,
"poolSize": 5
},
{
"label": "cloud-rds",
"url": "postgresql://user:pass@rds-instance.amazonaws.com:5432/mydb?sslmode=require",
"enabled": true,
"ssl": true,
"readOnly": true
},
{
"label": "staging",
"host": "staging-db.example.com",
"port": 5432,
"user": "dev",
"password": "dev_password",
"database": "myapp_staging",
"enabled": true,
"readOnly": false
},
{
"label": "local",
"host": "localhost",
"port": 5432,
"user": "postgres",
"password": "postgres",
"database": "devdb",
"enabled": false
}
]
}