spatie / blender

The Laravel template used for our CMS like projects
https://freek.dev/on-open-sourcing-blender
877 stars 148 forks source link

The file `.env` must be created before installing dependencies #524

Closed ilyar closed 5 years ago

ilyar commented 5 years ago

If I install dependencies without a file .env, I get an error:

Generating autoload files
> Illuminate\Foundation\ComposerScripts::postAutoloadDump
> @php artisan package:discover

In DuskServiceProvider.php line 43:

  It is unsafe to run Dusk in production.  

Script @php artisan package:discover handling the post-autoload-dump event returned with error code 1

Corrected the sequence in the documentation, the file .env must be created before installing dependencies.

freekmurze commented 5 years ago

Thanks!

ilyar commented 5 years ago

@freekmurze Thank you too