mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update start.sh
This commit is contained in:
parent
93492f0052
commit
77901a7092
1 changed files with 11 additions and 0 deletions
|
@ -3,7 +3,13 @@
|
|||
# Create the storage tree if needed and fix permissions
|
||||
cp -r storage.skel/* storage/
|
||||
chown -R www-data:www-data storage/ bootstrap/
|
||||
|
||||
# Refresh the environment
|
||||
php artisan storage:link
|
||||
php artisan horizon:assets
|
||||
php artisan route:cache
|
||||
php artisan view:cache
|
||||
php artisan config:cache
|
||||
|
||||
# Migrate database if the app was upgraded
|
||||
# gosu www-data:www-data php artisan migrate --force
|
||||
|
@ -11,5 +17,10 @@ php artisan storage:link
|
|||
# Run other specific migratins if required
|
||||
# gosu www-data:www-data php artisan update
|
||||
|
||||
# Run a worker if it is set as embedded
|
||||
if [ "$HORIZON_EMBED" = "true" ]; then
|
||||
gosu www-data:www-data php artisan horizon &
|
||||
fi
|
||||
|
||||
# Finally run Apache
|
||||
exec apache2-foreground
|
||||
|
|
Loading…
Reference in a new issue