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

8
.sequelizerc Normal file
View File

@@ -0,0 +1,8 @@
const path = require("path");
module.exports = {
config: path.resolve("sequelize.config.js"),
"models-path": path.resolve("src/models"),
"seeders-path": path.resolve("seeders"),
"migrations-path": path.resolve("migrations")
};