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