Files
hounam-submit-form-backend/sequelize.config.js
2026-05-26 16:00:09 +03:30

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",
},
};