intern-Assignment/Sequelize-library/sequelize/config/config.json

24 lines
503 B
JSON
Raw Permalink Normal View History

2025-01-31 09:50:39 +00:00
{
"development": {
"username": "postgres",
"password": "password",
"database": "registeredUsers",
"host": "localhost",
"dialect": "postgres"
},
"test": {
"username": "postgres",
"password": "password",
"database": "registeredUsers_test",
"host": "localhost",
"dialect": "postgres"
},
"production": {
"username": "postgres",
"password": "password",
"database": "registeredUsers_prod",
"host": "localhost",
"dialect": "postgres"
}
}