node-api-template/configs/database.template.json

27 lines
557 B
JSON
Raw Normal View History

2024-07-03 18:52:30 +00:00
{
"development": {
2024-07-05 19:34:48 +00:00
"username": "postgres",
2024-07-03 18:52:30 +00:00
"password": "",
"database": "node_api_template_development",
"host": "127.0.0.1",
"port": 5432,
"dialect": "postgres"
},
"test": {
2024-07-05 19:34:48 +00:00
"username": "postgres",
2024-07-03 18:52:30 +00:00
"password": "",
"database": "node_api_template_test",
"host": "127.0.0.1",
"port": 5432,
"dialect": "postgres"
},
"production": {
2024-07-05 19:34:48 +00:00
"username": "postgres",
2024-07-03 18:52:30 +00:00
"password": "",
"database": "node_api_template_production",
"host": "127.0.0.1",
"port": 5432,
"dialect": "postgres"
}
}