Skip to content

Instantly share code, notes, and snippets.

@eemr3
Last active September 13, 2022 22:27
Show Gist options
  • Save eemr3/faaad25d76d78386f2b7b8930ded8812 to your computer and use it in GitHub Desktop.
Save eemr3/faaad25d76d78386f2b7b8930ded8812 to your computer and use it in GitHub Desktop.
Configuração do dot sequelizerc
const path = require('path');
module.exports = {
config: path.resolve('src', 'database', 'config', 'config.js'),
'models-path': path.resolve('src', 'database', 'models'),
'seeders-path': path.resolve('src', 'database', 'seeders'),
'migrations-path': path.resolve('src', 'database', 'migrations'),
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment