Shelf/database.json

17 lines
331 B
JSON
Raw Normal View History

2022-05-09 19:46:23 +00:00
{
"dev": {
"driver": "pg",
"host": "127.0.0.1",
"database": "shelf",
2022-05-09 19:46:23 +00:00
"user": "postgres",
2022-05-24 19:09:28 +00:00
"password": "postgres"
2022-05-09 19:46:23 +00:00
},
"test": {
"driver": "pg",
"host": "127.0.0.1",
2022-05-19 01:25:20 +00:00
"database": "shelf_test",
"user": "postgres",
2022-05-24 19:09:28 +00:00
"password": "postgres"
2022-05-09 19:46:23 +00:00
}
2022-05-24 20:38:05 +00:00
}