Skip to content

Commit 2969441

Browse files
committed
Update storage path for Laravel
1 parent ca6a93b commit 2969441

11 files changed

Lines changed: 31 additions & 2 deletions

File tree

bootstrap/app.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@
1515
})
1616
->withExceptions(function (Exceptions $exceptions): void {
1717
})->create()
18-
->useAppPath(realpath(__DIR__.'/../src'))
19-
->useStoragePath(realpath(__DIR__.'/../files/temp'));
18+
->useAppPath(realpath(__DIR__.'/../src'));

storage/app/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*
2+
!private/
3+
!public/
4+
!.gitignore

storage/app/private/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

storage/app/public/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

storage/framework/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
compiled.php
2+
config.php
3+
down
4+
events.scanned.php
5+
maintenance.php
6+
routes.php
7+
routes.scanned.php
8+
schedule-*
9+
services.json

storage/framework/cache/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*
2+
!data/
3+
!.gitignore
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

storage/framework/views/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

0 commit comments

Comments
 (0)