Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 545 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 545 Bytes

Installation

  1. Comment MoonShineServiceProvider in bootstrap/providers.php:
return [
    App\Providers\AppServiceProvider::class,
    //App\Providers\MoonShineServiceProvider::class,
];
  1. Installation command

Without docker:

make install-local

With docker:

make install-docker
  1. Uncomment MoonShineServiceProvider in bootstrap/providers.php
return [
    App\Providers\AppServiceProvider::class,
    App\Providers\MoonShineServiceProvider::class,
];
  1. Make MoonShine Great Again