Skip to content

workytip/Task-Management-System

Repository files navigation

Task Management System

Laravel Application

This is a Laravel-based web application. Follow the steps below to set up the project on your local machine.

Prerequisites

Before you begin, ensure you have the following installed on your system:

  • PHP (version 8.1 or higher)
  • Composer (PHP dependency manager)
  • MySQL or another supported database system
  • Git (for version control)

Installation

  1. Clone the repository
git clone https://github.com/workytip/Task-Management-System.git
  1. Install PHP dependencies
composer install
  1. Create the environment file

Copy the .env.example file to .env and update the environment variables as needed.

cp .env.example .env

Open the .env file and configure your database connection:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database_name
DB_USERNAME=your_database_user
DB_PASSWORD=your_database_password

Set Token Expiration Time in minutes

TOKEN_EXPIRATION_TIME=120
  1. Generate an application key

Run the following command to generate a unique application key:

php artisan key:generate
  1. Run database migrations and seeder
php artisan migrate --seed

6.Run this command to create tasklog file

php artisan log:create-task-log

7.Start the development server

php artisan serve

Database Design

image

POSTMAN Collection

https://documenter.getpostman.com/view/21726622/2sAYdoFnqp

About

Task Management System .

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published