first commit

This commit is contained in:
2026-05-26 16:00:09 +03:30
commit 83fd5c1a86
81 changed files with 6867 additions and 0 deletions

18
sequelize.config.js Normal file
View File

@@ -0,0 +1,18 @@
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",
},
};