This is a Laravel-based Task Management System for organizing, tracking, and managing tasks efficiently.
Follow the steps below to set up the project on your local machine.
Clone the project from the GitHub repository using the following command:
git clone https://github.com/mdrakash/task_management.git
Navigate into the project directory:
cd task_management
cp .env.example .env
Edit the .env file to configure your environment settings (e.g., database, mail, etc.).
Install all the necessary PHP dependencies by running:
composer install
Generate the application encryption key:
php artisan key:generate
Install all the required Node.js dependencies:
npm install
php artisan migrate --seed
php artisan passport:client --personal
enter any name for client
php artisan serve
- Laravel - PHP Framework for web artisans
- Vue.js - Progressive JavaScript Framework for building user interfaces
This project is licensed under the MIT License.
This README.md
provides clear instructions for cloning, setting up, and running the Laravel project.