The application allows students to organize their notes taken in the class or during individual study activities.
git clone https://github.com/eduardbudacu/studentnotes.git
cd frontend
npm install
cd backend
composer install
Create a local .env
file and update database credentials
cp .env.example .env
Generate JWT secret
php artisan jwt:secret
Create database
php artisan migrate:fresh
cd frontend
npm start