Skip to content

Latest commit

 

History

History
executable file
·
48 lines (48 loc) · 1.1 KB

README.md

File metadata and controls

executable file
·
48 lines (48 loc) · 1.1 KB

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