mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
13 lines
226 B
Bash
Executable file
13 lines
226 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -o allexport
|
|
source .env
|
|
set +o allexport
|
|
|
|
cp -r storage.skel/* storage/
|
|
chown -R www-data:www-data storage/
|
|
php artisan migrate --force
|
|
php artisan storage:link
|
|
|
|
php artisan horizon &
|
|
exec apache2-foreground
|