28 lines
431 B
JSON
28 lines
431 B
JSON
{
|
|
"mysql": {
|
|
"driver": "mysql",
|
|
"connection": {
|
|
"host": "localhost",
|
|
"user": "root",
|
|
"password": "",
|
|
"database": "test"
|
|
}
|
|
},
|
|
"pg": {
|
|
"driver": "pg",
|
|
"conn": "postgres://postgres@localhost/test"
|
|
},
|
|
"pg-object": {
|
|
"driver": "pg",
|
|
"connection": {
|
|
"host": "localhost",
|
|
"user": "postgres",
|
|
"password": "",
|
|
"database": "test"
|
|
}
|
|
},
|
|
"dblite": {
|
|
"driver": "sqlite",
|
|
"conn": ":memory:"
|
|
}
|
|
} |