NodeJS - v22 (min)
On mac, the file database/configuration/my.cnf must be modified to set this variable to 1 :
lower_case_table_names=1
Execute npm run docker-run to launch the application. Once it is running, go to localhost:4000.
In order to run those commands locally, you can either install sequelize-cli globally or simply run npm i.
$ npx sequelize-cli [command]$ npx sequelize-cli --help$ npx sequelize-cli migration:generate --name <MIGRATION_FILE_NAME>$ npx sequelize-cli db:migrate$ npx sequelize-cli seed:generate --name <SEEDER_FILE_NAME>$ npx sequelize-cli db:seed:all