I\'m trying to run sequelize-cli, specifically npx sequelize db:migrate.
npx sequelize db:migrate
I\'ve created a config file in config/config.js which looks like t
config/config.js
This should fix the issue,
module.exports = { development: { username: "USER", password: "PASSWORD", database: "DB_NAME", host: "HOST.net", dialect: 'mssql', dialectOptions: { options: { encrypt: true } } } };