소스 검색

Create gitignore for Laravel5

In Laravel 5 the storage folder was moved to the root of the application. The compiled.php has also been moved to the bootstrap/cache directory

This was no longer compatible with the previous laravel.gitignore.
Jeroen Deviaene 9 년 전
부모
커밋
f652ad7627
1개의 변경된 파일9개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      Laravel5.gitignore

+ 9 - 0
Laravel5.gitignore

@@ -0,0 +1,9 @@
+bootstrap/cache/
+.env.*.php
+.env.php
+.env
+.env.example
+
+vendor/
+node_modules/
+storage/