Spaces:
Sleeping
Sleeping
Commit
·
a3003cc
1
Parent(s):
2074b7d
dockerfile update 7
Browse files- .gitignore → app/.gitignore +3 -3
- app/storage/app/.gitignore +3 -0
- app/storage/app/public/.gitignore +2 -0
- app/storage/framework/.gitignore +9 -0
- app/storage/framework/cache/.gitignore +3 -0
- app/storage/framework/cache/data/.gitignore +2 -0
- app/storage/framework/sessions/.gitignore +2 -0
- app/storage/framework/testing/.gitignore +2 -0
- app/storage/framework/views/.gitignore +2 -0
- app/storage/logs/.gitignore +2 -0
.gitignore → app/.gitignore
RENAMED
@@ -34,6 +34,6 @@ Homestead.json
|
|
34 |
.phpunit.result.cache
|
35 |
|
36 |
# End of https://www.toptal.com/developers/gitignore/api/laravel
|
37 |
-
|
38 |
-
|
39 |
-
|
|
|
34 |
.phpunit.result.cache
|
35 |
|
36 |
# End of https://www.toptal.com/developers/gitignore/api/laravel
|
37 |
+
public/build/manifest.json
|
38 |
+
public/build/assets/app-DjtQfrF3.js
|
39 |
+
public/build/assets/app-DqME6eCz.css
|
app/storage/app/.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
*
|
2 |
+
!public/
|
3 |
+
!.gitignore
|
app/storage/app/public/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*
|
2 |
+
!.gitignore
|
app/storage/framework/.gitignore
ADDED
@@ -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
|
app/storage/framework/cache/.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
*
|
2 |
+
!data/
|
3 |
+
!.gitignore
|
app/storage/framework/cache/data/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*
|
2 |
+
!.gitignore
|
app/storage/framework/sessions/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*
|
2 |
+
!.gitignore
|
app/storage/framework/testing/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*
|
2 |
+
!.gitignore
|
app/storage/framework/views/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*
|
2 |
+
!.gitignore
|
app/storage/logs/.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
*
|
2 |
+
!.gitignore
|