]> BookStack Code Mirror - bookstack/commitdiff
#47 - Undos changes in config files.
authorAbijeet <redacted>
Sat, 10 Jun 2017 14:16:00 +0000 (19:46 +0530)
committerAbijeet <redacted>
Sat, 10 Jun 2017 14:16:00 +0000 (19:46 +0530)
config/app.php
config/database.php

index 13bb9aa7ddb90d4b08ee8e4bf03fc6e5a7410ede..54cdca21bb25893d8c5b85aa4bc78a5eb10aa891 100644 (file)
@@ -3,7 +3,7 @@
 return [
 
 
-    'env' => env('APP_ENV', 'development'),
+    'env' => env('APP_ENV', 'production'),
 
     'editor' => env('APP_EDITOR', 'html'),
 
@@ -18,7 +18,7 @@ return [
     |
     */
 
-    'debug' => env('APP_DEBUG', true),
+    'debug' => env('APP_DEBUG', false),
 
     /*
     |--------------------------------------------------------------------------
index d13268cea44f8cbf7b77d211dd7dad66b7cf1d5e..92c7682450a68317015e6559380e34cfeaf414db 100644 (file)
@@ -71,9 +71,9 @@ return [
         'mysql' => [
             'driver'    => 'mysql',
             'host'      => env('DB_HOST', 'localhost'),
-            'database'  => env('DB_DATABASE', 'bookstack'),
-            'username'  => env('DB_USERNAME', 'root'),
-            'password'  => env('DB_PASSWORD', 'Change123'),
+            'database'  => env('DB_DATABASE', 'forge'),
+            'username'  => env('DB_USERNAME', 'forge'),
+            'password'  => env('DB_PASSWORD', ''),
             'charset'   => 'utf8',
             'collation' => 'utf8_unicode_ci',
             'prefix'    => '',