mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Provide some defaults for db connection
This commit is contained in:
parent
8505539145
commit
a98dc2774f
1 changed files with 5 additions and 5 deletions
10
.env.example
10
.env.example
|
@ -3,11 +3,11 @@
|
|||
# mysql (MySQL/MariaDB - default)
|
||||
# pgsql (PostgreSQL)
|
||||
# sqlsrv (Microsoft SQL Server)
|
||||
DB_CONNECTION=
|
||||
DB_HOST=
|
||||
DB_DATABASE=
|
||||
DB_USERNAME=
|
||||
DB_PASSWORD=
|
||||
DB_CONNECTION=mysql
|
||||
DB_HOST=127.0.0.1
|
||||
DB_DATABASE=koel
|
||||
DB_USERNAME=koel
|
||||
DB_PASSWORD=SoSecureMuchWow
|
||||
|
||||
# Username and password for the initial admin account
|
||||
# This info will be populated into the database during `php artisan db:seed`
|
||||
|
|
Loading…
Reference in a new issue