mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
18 lines
379 B
Bash
Executable file
18 lines
379 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Create the storage tree if needed and fix permissions
|
|
cp -r storage.skel/* storage/
|
|
chown -R www-data:www-data storage/
|
|
php artisan storage:link
|
|
|
|
# Migrate database if the app was upgraded
|
|
php artisan migrate --force
|
|
|
|
# Run a worker if it is set as embedded
|
|
if [ HORIZON_EMBED = true ]; then
|
|
php artisan horizon &
|
|
fi
|
|
|
|
# Finally run Apache
|
|
exec apache2-foreground
|