diff --git a/.gitignore b/.gitignore index ac9b01d1..3f18fdcb 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ node_modules/* resources/cache/* assets/bower_components/* assets/dist/* +koala-config.json diff --git a/app/Services/Boot.php b/app/Services/Boot.php index 296c567a..df0cd574 100644 --- a/app/Services/Boot.php +++ b/app/Services/Boot.php @@ -33,9 +33,6 @@ class Boot public static function registerErrorHandler() { - if (!isset($_ENV)) - self::loadDotEnv(); - if ($_ENV['APP_DEBUG'] !== "false") { // whoops: php errors for cool kids $whoops = new \Whoops\Run; diff --git a/koala-config.json b/koala-config.json deleted file mode 100644 index 6b5a89b1..00000000 --- a/koala-config.json +++ /dev/null @@ -1,34 +0,0 @@ -// Default project settings, you can edit it and set custom settings. -{ - // The mappings of source directory and output directory - "mappings": [ - { - "src": "assets/src/sass/", - "dest": "assets/dist/css/" - }, - { - "src": "assets/src/js/", - "dest": "assets/dist/js/" - } - ], - - // Add the ignore rules that Koala will not search them. - // e.g. ["*.json", "*.txt", "test", "path/libs"] - "ignores": [ - "assets/bower_components", - "node_modules", - "vendor", - "assets/libs", - "assets/dist" - ], - - // Options of Compilers. - "options": { - // "key": "val", - // "key2": "val2" - // ... - }, - - // An array of filesystem paths which should be searched for js/LESS/Sass templates imported with the @import/@append/@prepend directive. - "includePaths": [] -}