You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -51,9 +51,14 @@ Run [Composer](https://getcomposer.org/) to install all dependencies.
51
51
composer install --prefer-dist
52
52
```
53
53
54
-
Ensure the folder ./storage are with all rights to save log and cache (alread set in composer install, but ...)
54
+
Ensure the composer install create the cache folders and give then permissions in ./storage, if don't you'll have to create and give permitions yourself:
55
55
```sh
56
-
chmod -R 777 ./storage
56
+
mkdir storage/framework \
57
+
&& mkdir storage/framework/cache \
58
+
&& mkdir storage/framework/cache/data \
59
+
&& mkdir storage/framework/sessions \
60
+
&& mkdir storage/framework/views \
61
+
&& chmod -R 777 ./storage
57
62
```
58
63
59
64
To check the build for this project look at ./ops/docker/dev folder.
0 commit comments