You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've encountered an issue with the Laravel Totem package while developing with Laravel. Totem attempts to establish a database connection when running the @php artisan package:discover --ansi command during Composer's post-autoload-dump scripts.
This behavior results in an error when the database (in my case, an SQLite database) does not yet exist:
Illuminate\Database\QueryException
Database file at path [/app/database/database.sqlite] does not exist. Ensure this is an absolute path to the database.
Could there perhaps be a way to delay Totem's database connection to a point where the entire application is fully set up and the database is guaranteed to be ready for a connection request?
Thank you for your help and consideration.
The text was updated successfully, but these errors were encountered:
Hello,
I've encountered an issue with the Laravel Totem package while developing with Laravel. Totem attempts to establish a database connection when running the
@php artisan package:discover --ansi
command during Composer's post-autoload-dump scripts.This behavior results in an error when the database (in my case, an SQLite database) does not yet exist:
Could there perhaps be a way to delay Totem's database connection to a point where the entire application is fully set up and the database is guaranteed to be ready for a connection request?
Thank you for your help and consideration.
The text was updated successfully, but these errors were encountered: