Different directories for seed data using sequelize
问题 I would like to have different seed data between development and production. How can I specify this in the configuration? I'm aware that in the .sequelizerc I can load a dynamic configuration file and specify a seeders-path // .sequelizerc const path = require('path') module.exports = { "config": path.resolve('./app/config', 'config.json'), "models-path": path.resolve('./app/models'), "migrations-path": path.resolve('./app/migrations') "seeders-path": path.resolve('./app/seeders') } And the