Fica dando esse erro ERROR: Cannot find "C:\Users\Anthoni\Documents\Estudos na pratica\alura-cursos\FRONT-END\orm-nodejs-sequelize-mysql\api\config\api\config\config.json". Have you run "sequelize init"? ;
Já troquei o caminho da pasta, já conferir se tá certo a senha e o username do banco está tudo certinho, estou usando postsgres ao invés do mysql
const path = require('path');
// foi assim
module.exports = {
'config': path.resolve('./api/config', './api/config/config.json'),
'models-path': path.resolve('./api/models'),
'seeders-path': path.resolve('./api/seeders'),
'migrations-path': path.resolve('./api/migrations')
}
//já foi desse jeito:
const path = require('path');
module.exports = {
'config': path.resolve('./api/config', './api/config.json'),
'models-path': path.resolve('./api/models'),
'seeders-path': path.resolve('./api/seeders'),
'migrations-path': path.resolve('./api/migrations')
}