This repository contains a Laravel-based API for a task management system, allowing users to create, update, and delete tasks, as well as view task lists and mark tasks as complete. Built using best practices for RESTful APIs, this system is designed for easy integration with front-end applications or other systems.
Clone the project
git clone https://github.com/majdnaji/TaskKeeperAPI.git
Go to the project directory
cd TaskKeeperAPI
Install dependencies
composer install
Create a database and add it to .env
DB_DATABASE={DB_NAME}
DB_USERNAME={DB_USERNAME}
DB_PASSWORD={DB_PASSWORD}
Run migartions and seeders
php artisan migrate --seed
Laravel, JWT, Spatie Laravel Permissions.