mv .env.example .envto copy the env example to a real .env;- Go to .env file and configure your MySQL connection and also set your JWT_SECRET;
npm installoryarn installto install all needed libraries;npx sequelize db:migrateoryarn sequelize db:migrateto set the database with its columns and fields;yarn sequelize db:seed:allto setup default needed data on db;npm startoryarn startto start the server;- If you want to undo the database creation:
npx sequelize db:migrate:undooryarn sequelize db:migrate:undo;
Front-end app here: React OLX