first commit

This commit is contained in:
2026-05-23 14:14:50 +03:30
commit 2a22bab127
48 changed files with 7554 additions and 0 deletions

11
.sequelizerc Normal file
View File

@@ -0,0 +1,11 @@
const path = require("path");
require("ts-node/register");
require("tsconfig-paths/register");
module.exports = {
config: path.resolve("src/config/config.ts"),
"models-path": path.resolve("src/models"),
"migrations-path": path.resolve("src/migrations"),
"seeders-path": path.resolve("src/seeders")
};