Skip to content

Files

Latest commit

a1e7904 · Apr 6, 2019

History

History
40 lines (39 loc) · 760 Bytes

index.md

File metadata and controls

40 lines (39 loc) · 760 Bytes

How to install IMRepo

  • clone this repo
git clone https://github.com/imokhles/imrepo
  • change direction to IMRepo folder
cd imrepo
  • copy .env.example to .env
cp .env.example .env
  • update .env with your database info
DB_DATABASE=DB_NAME
DB_USERNAME=USERNAME
DB_PASSWORD=PASSWORD
  • install composer packages
composer update
  • generate laravel key
php artisan key:generate
  • setup Backpack Base package
php artisan backpack:base:install
  • setup Backpack Crud package ( NOTE: reply NO to don't install elfinder file manager (we don't need it) )
php artisan backpack:crud:install
  • refresh your migrations
php artisan migrate:refresh --force --seed