Commit ·
e281fd7
1
Parent(s): f9099f6
renable storage
Browse files- .gitignore +1 -1
- Dockerfile +2 -1
- 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
CHANGED
|
@@ -12,7 +12,7 @@ yarn-error.log
|
|
| 12 |
|
| 13 |
|
| 14 |
bootstrap/compiled.php
|
| 15 |
-
app/storage/
|
| 16 |
|
| 17 |
|
| 18 |
public/storage
|
|
|
|
| 12 |
|
| 13 |
|
| 14 |
bootstrap/compiled.php
|
| 15 |
+
#app/storage/
|
| 16 |
|
| 17 |
|
| 18 |
public/storage
|
Dockerfile
CHANGED
|
@@ -44,10 +44,11 @@ RUN php artisan config:cache
|
|
| 44 |
RUN composer clear-cache
|
| 45 |
RUN composer install
|
| 46 |
RUN npm install
|
|
|
|
| 47 |
RUN cp $HOME/example-app/.env.example $HOME/example-app/.env
|
| 48 |
|
| 49 |
RUN php artisan key:generate
|
| 50 |
-
RUN mkdir -p $HOME/example-app/public/storage/images
|
| 51 |
|
| 52 |
RUN chmod 777 -R $HOME/example-app
|
| 53 |
RUN chown -R ubuntu:ubuntu $HOME/example-app
|
|
|
|
| 44 |
RUN composer clear-cache
|
| 45 |
RUN composer install
|
| 46 |
RUN npm install
|
| 47 |
+
RUN npm run build
|
| 48 |
RUN cp $HOME/example-app/.env.example $HOME/example-app/.env
|
| 49 |
|
| 50 |
RUN php artisan key:generate
|
| 51 |
+
#RUN mkdir -p $HOME/example-app/public/storage/images
|
| 52 |
|
| 53 |
RUN chmod 777 -R $HOME/example-app
|
| 54 |
RUN chown -R ubuntu:ubuntu $HOME/example-app
|
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
|