19 lines
354 B
JavaScript
19 lines
354 B
JavaScript
require("ts-node/register");
|
|
|
|
module.exports = {
|
|
development: {
|
|
username: "postgres",
|
|
password: "root",
|
|
database: "employee_form",
|
|
host: "127.0.0.1",
|
|
dialect: "postgres",
|
|
},
|
|
production: {
|
|
username: "postgres",
|
|
password: "root",
|
|
database: "employee_form_prod",
|
|
host: "127.0.0.1",
|
|
dialect: "postgres",
|
|
},
|
|
};
|