This is a web application which help tranfer, assign and manage tasks between multiple agents.
Package requirement:
- PHP 7.x
- Composer 2.0
- Laravel 8.x
- MySQL (Installation with XAMPP/MySQL Installer)
Command to install composer is like this:
curl -sS https://getcomposer.org/installer | php
php composer.phar install
Copy a version .env.example
-> .env
php artisan key:generate
php artisan serve
To generate database schema, you will need to run migration.
php artisan migrate
php artisan make:migration <migration_name>
Detail see here
php artisan db:seed --class=DatabaseSeeder
This command will create Database for the project
This project have several environment for study purpose. We will go over several environment for this project
For development, we have some container to build up: You can run by this command:
docker-compose -f docker-compose.dev.yml up
This environment includes these images:
- php:7.4-fpm
- nginx
- mariadb (for test purpose only)
- adminer (for access mariadb)