- Create database
- Copy .env.example to .env and fill with database credentials.
To install dependencies, run
npm install
- Migrations:
npx sequelize-cli db:migrate
- Seeders:
npx sequelize-cli db:seed:all
npm start
When you run all seeders you'll create 20 Users. 10 AdminUsers and 10 StandardUsers.
There are 2 types of emails for users: 1)'[email protected]' 2)'[email protected]' note that the number at the end of the email is the one that will increase up to 10 when create all the users
The Password will be the same for all the Users:
- '1234'
Remember that to Login you will only need the email and password.