From 800cdac1a0bea535d4f65d603da69c5e04d2c86b Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 2 Oct 2014 19:39:47 -0500 Subject: [PATCH] Work on paths. --- .gitignore | 8 ++++---- config/filesystems.php | 2 +- storage/.gitignore | 1 + storage/app/.gitignore | 2 ++ 4 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 storage/.gitignore create mode 100644 storage/app/.gitignore diff --git a/.gitignore b/.gitignore index 88b8530f1..7956c4750 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ -/vendor -/.idea -composer.phar -composer.lock .env.* +/.idea +/vendor .DS_Store Thumbs.db +composer.lock +composer.phar diff --git a/config/filesystems.php b/config/filesystems.php index 36394709b..58222c3a7 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -45,7 +45,7 @@ 'local' => [ 'driver' => 'local', - 'root' => storage_path().'/work', + 'root' => storage_path().'/app', ], 's3' => [ diff --git a/storage/.gitignore b/storage/.gitignore new file mode 100644 index 000000000..78eac7b62 --- /dev/null +++ b/storage/.gitignore @@ -0,0 +1 @@ +laravel.log \ No newline at end of file diff --git a/storage/app/.gitignore b/storage/app/.gitignore new file mode 100644 index 000000000..c96a04f00 --- /dev/null +++ b/storage/app/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file