This prject was developed based on :
- Node.js
- React JS
- PHP
- Laravel
- MySQL
Create a database with a given name, create a user for it with the necessary privileges, then write the config on the .env file in the back.
cd into the backend folder and follow the next commands
install laravel dependency run
composer install
run database migration
php artisan migrate
run the server
php artisan serve
drop all table and insert data
php artisan migrate:fresh --seed
cd into the frontend folder and follow the next commands
install dependency
npm install
run in dev mode
npm run dev