0

I want to prepare the configuration of my website on a server of my university.

I have the follow problem: npx sequelize is not working because sequelize is not installed globally and can't install the package (I not have good rights for that).

There is a way to use sequelize locally? I need to make migrations and run seeders.

snow
  • 5
  • 1
  • 1

1 Answers1

0

Have you tried what the install section tells you to do?

Make sure you have Sequelize installed. Then install the Sequelize CLI to be used in your project with

$ npm install --save-dev sequelize-cli

And then you should be able to run the CLI with

$ npx sequelize --help
Olian04
  • 6,480
  • 2
  • 27
  • 54