Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 737 Bytes

File metadata and controls

49 lines (39 loc) · 737 Bytes

This Script is live at: http://18.216.184.16:8004/

Application ScreenShot

home-page-screenshot

Script Installation

  1. Install Composer Dependencies
composer install
  1. Set Up Environment Variables. After creating .env put your database credentials there.
cp .env.example .env
  1. Generate Application Key
php artisan key:generate
  1. Install NPM Dependencies
npm install
  1. Build Assets
npm run build
  1. Create Storage Link
php artisan storage:link
  1. Run Database Migrations
php artisan migrate
  1. Seed the Database
php artisan db:seed

Running Tests

php artisan test