Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -84,8 +84,8 @@ return [ | ... | @@ -84,8 +84,8 @@ return [ |
| 84 | 'driver' => 'mysql', | 84 | 'driver' => 'mysql', |
| 85 | 'host' => 'localhost', | 85 | 'host' => 'localhost', |
| 86 | 'database' => 'bookstack-test', | 86 | 'database' => 'bookstack-test', |
| 87 | - 'username' => 'bookstack-test', | 87 | + 'username' => env('MYSQL_USER', 'bookstack-test'), |
| 88 | - 'password' => 'bookstack-test', | 88 | + 'password' => env('MYSQL_PASSWORD', 'bookstack-test'), |
| 89 | 'charset' => 'utf8', | 89 | 'charset' => 'utf8', |
| 90 | 'collation' => 'utf8_unicode_ci', | 90 | 'collation' => 'utf8_unicode_ci', |
| 91 | 'prefix' => '', | 91 | 'prefix' => '', | ... | ... |
-
Please register or sign in to post a comment