We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Base scaffold have env function call in app/config/database.php
'driver' => env('DB_CONNECTION', 'sqlite'), https://github.com/spiral/app/blob/master/app/config/database.php#L30
'driver' => env('DB_CONNECTION', 'sqlite'),
but it seems like env doesn't working properly at that moment
I've got an error here
php app.php db:list [Cycle\Database\Exception\ConfigException] Undefined driver `` in vendor/cycle/database/src/Config/DatabaseConfig.php:107
if I set
'databases' => [ 'default' => ['driver' => 'sqlite'], ],
everything is ok
The text was updated successfully, but these errors were encountered:
butschster
msmakouz
No branches or pull requests
Base scaffold have env function call in app/config/database.php
'driver' => env('DB_CONNECTION', 'sqlite'),
https://github.com/spiral/app/blob/master/app/config/database.php#L30
but it seems like env doesn't working properly at that moment
I've got an error here
if I set
everything is ok
The text was updated successfully, but these errors were encountered: