We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 278575f commit 60ea334Copy full SHA for 60ea334
home/app/run-dev.sh
@@ -2,13 +2,16 @@
2
echo "Running via DEV script..."
3
cd /opt/app
4
5
-# Make sure Laravel can write its own files
+# make sure Laravel can write its own files
6
mkdir -p /opt/app/storage/logs/
7
touch /opt/app/storage/logs/laravel.log
8
touch /opt/app/storage/logs/worker.log
9
chown www-data:www-data -R /opt/app/storage
10
chown www-data:www-data -R /opt/app/bootstrap/cache
11
12
+# create storage symlink
13
+php artisan storage:link
14
+
15
# install dependencies
16
composer install --prefer-dist --no-progress --no-interaction
17
yarn
0 commit comments