Skip to content

Dzyfhuba/image-comparison-histogram

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Image Comparison Project

Built using laravel 8.

Installation Procedure

The prerequisites needed are as follows:

  1. Local server (Apache2),
  2. A database (MySQL),
  3. PHPUnit,
  4. NodeJS.
  5. Composer,

Installation steps:

  1. Clone project from this github repository
git clone https://github.com/Dzyfhuba/image-comparison-histogram.git
  1. Change directory
cd image-comparison-histogram
  1. Install Composer Dependencies
composer install
  1. Install NPM Dependencies
npm install && npm run build
  1. Create a copy of your .env file
cp .env.example .env
  1. Generate an app encryption key
php artisan key:generate
  1. Create an empty database for our application
  2. In the .env file, add database information to allow Laravel to connect to the database
  3. Migrate the database
php artisan migrate
  1. [Optional]: Seed the database
php artisan db:seed
  1. Run Laravel project
php artisan serve