This project is a simple and user-friendly platform that allows project managers to manage their tasks efficiently.
- PHP 7.4.33
- Laravel 8
- Bootstrap 5.3
- Vue.js 2.7.14
- Vue Draggable 2.24.3
- Clone the project
git clone git@github.com:blancessanchez/task-management-system.git-
Create database named task_management.
-
Go to the project directory
cd task-management-system- Execute the necessary setup
php artisan migrate
php artisan key:generate
php artisan db:seed
composer install
npm install- Go to the .env file, change the following according to the credentials
DB_HOST=127.0.0.1
DB_DATABASE=task_management
DB_USERNAME=root
DB_PASSWORD=- Start the server and build assets
php artisan serve
npm run prod- Login Credentials
username: user
password: password- Execute test script
php artisan test --filter Feature