node-query/test/config-travis.json

25 lines
377 B
JSON
Raw Normal View History

{
"mysql": {
"driver": "mysql",
"connection": {
"host": "localhost",
"user": "root",
"password": "",
"database": "test"
}
},
"pg": {
"driver": "pg",
2016-03-11 11:02:06 -05:00
"connection": "postgres://postgres@localhost/test"
},
"pg-object": {
"driver": "pg",
"connection": {
"database": "test"
}
},
2014-10-31 11:57:44 -04:00
"dblite": {
"driver": "sqlite",
2016-03-11 11:02:06 -05:00
"connection": ":memory:"
}
}