1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pixelfed_ynh.git synced 2024-09-03 20:06:04 +02:00

update for v0.10.10

This commit is contained in:
yalh76 2021-02-15 19:39:38 +01:00
parent fc5ebfe29f
commit c9d4bde63a
3 changed files with 7 additions and 1 deletions

View file

@ -5,7 +5,7 @@
#=================================================
# dependencies used by the app
pkg_dependencies="postgresql redis-server imagemagick jpegoptim optipng pngquant supervisor"
pkg_dependencies="postgresql redis-server libgd3 jpegoptim optipng pngquant ffmpeg imagemagick supervisor"
YNH_PHP_VERSION="7.3"

View file

@ -171,6 +171,7 @@ ynh_script_progression --message="Deploying..."
pushd "$final_path"
php$phpversion artisan -n key:generate --force
php$phpversion artisan horizon:install
php$phpversion artisan horizon:publish
php$phpversion artisan config:clear
php$phpversion artisan config:cache
php$phpversion artisan route:cache
@ -180,6 +181,8 @@ pushd "$final_path"
php$phpversion artisan update
php$phpversion artisan horizon:purge
php$phpversion artisan horizon:assets
php$phpversion artisan import:cities
php$phpversion artisan instance:actor
popd
#=================================================

View file

@ -223,6 +223,7 @@ ynh_script_progression --message="Deploying..."
pushd "$final_path"
php$phpversion artisan horizon:install
php$phpversion artisan horizon:publish
php$phpversion artisan config:clear
php$phpversion artisan config:cache
php$phpversion artisan route:clear
@ -234,6 +235,8 @@ pushd "$final_path"
php$phpversion artisan update
php$phpversion artisan horizon:purge
php$phpversion artisan horizon:assets
php$phpversion artisan import:cities
php$phpversion artisan instance:actor
popd
#=================================================