// Import the path module to work with file paths const path = require("path"); // Export an object with configuration options for Sequelize CLI module.exports = { // Configuration file path for Sequelize config: path.resolve("src/configs", "postgresConfig.js"), // Path to the directory where models are stored "models-path": path.resolve("src/models", "psql"), // Set the path to the directory to store seeders "seeders-path": path.resolve("src/db/psql", "seeders"), // Set the path to the directory to store migrations "migrations-path": path.resolve("src/db/psql", "migrations"), };