Sistem Informasi Sekolah Terintegrasi

Step by Step install aplikasi laravel dari Github

Laravel   2021-10-27  

Step by Step install aplikasi laravel dari Github

1. Download or clone this repo

Contoh :

$ git clone https://github.com/fukigenmedia/laravel-stisla.git

2. Install all dependency required by laravel.

$ composer install

3. Generate app key, configure .env file and do migration.

# create copy of .env
$ cp .env.example .env

# create laravel key
$ php artisan key:generate

# run migration
$ php artisan migrate:fresh --seed