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

Merge pull request #151 from YunoHost-Apps/testing

Oauth
This commit is contained in:
yalh76 2021-08-27 02:57:11 +02:00 committed by GitHub
commit d85b0b112a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 2 deletions

View file

@ -9,7 +9,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
## Overview ## Overview
The federated image sharing service Pixelfed, for YunoHost The federated image sharing service Pixelfed, for YunoHost
**Shipped version:** 0.11.0 **Shipped version:** 0.11.0~ynh2
## Important points to read before installing ## Important points to read before installing

View file

@ -28,6 +28,8 @@
# upgrade=1 from_commit=2a796e30dd521a5022586bc7fe59d189210028a4 # upgrade=1 from_commit=2a796e30dd521a5022586bc7fe59d189210028a4
# 0.10.10~ynh4 # 0.10.10~ynh4
# upgrade=1 from_commit=8ef41895fbd38008f3718e164d0bf3f0d97a2c03 # upgrade=1 from_commit=8ef41895fbd38008f3718e164d0bf3f0d97a2c03
# 0.11.0~ynh1
upgrade=1 from_commit=c7181d1c7cb6cba53bb65e622c78b0309a53b76a
backup_restore=1 backup_restore=1
multi_instance=1 multi_instance=1
port_already_use=0 port_already_use=0
@ -50,3 +52,5 @@ Notification=all
name=0.10.10~ynh3 name=0.10.10~ynh3
; commit=8ef41895fbd38008f3718e164d0bf3f0d97a2c03 ; commit=8ef41895fbd38008f3718e164d0bf3f0d97a2c03
name=0.10.10~ynh4 name=0.10.10~ynh4
; commit=c7181d1c7cb6cba53bb65e622c78b0309a53b76a
name=0.11.0~ynh1

View file

@ -6,7 +6,7 @@
"en": "ActivityPub Federated Image Sharing", "en": "ActivityPub Federated Image Sharing",
"fr": "Logiciel de partage d'image fédéré via ActivityPub" "fr": "Logiciel de partage d'image fédéré via ActivityPub"
}, },
"version": "0.11.0~ynh1", "version": "0.11.0~ynh2",
"url": "https://pixelfed.org/", "url": "https://pixelfed.org/",
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"maintainer": [ "maintainer": [

View file

@ -160,6 +160,7 @@ pushd "$final_path"
php$phpversion artisan -n key:generate --force php$phpversion artisan -n key:generate --force
php$phpversion artisan horizon:install php$phpversion artisan horizon:install
php$phpversion artisan horizon:publish php$phpversion artisan horizon:publish
php$phpversion artisan passport:keys
php$phpversion artisan config:clear php$phpversion artisan config:clear
php$phpversion artisan config:cache php$phpversion artisan config:cache
php$phpversion artisan route:cache php$phpversion artisan route:cache
@ -170,6 +171,7 @@ pushd "$final_path"
php$phpversion artisan horizon:purge php$phpversion artisan horizon:purge
php$phpversion artisan import:cities php$phpversion artisan import:cities
php$phpversion artisan instance:actor php$phpversion artisan instance:actor
php$phpversion artisan passport:client --personal <<< "\\n"
popd popd
#================================================= #=================================================

View file

@ -199,6 +199,7 @@ ynh_script_progression --message="Deploying..."
pushd "$final_path" pushd "$final_path"
php$phpversion artisan horizon:install php$phpversion artisan horizon:install
php$phpversion artisan horizon:publish php$phpversion artisan horizon:publish
php$phpversion artisan passport:keys
php$phpversion artisan config:clear php$phpversion artisan config:clear
php$phpversion artisan config:cache php$phpversion artisan config:cache
php$phpversion artisan route:clear php$phpversion artisan route:clear
@ -211,6 +212,7 @@ pushd "$final_path"
php$phpversion artisan horizon:purge php$phpversion artisan horizon:purge
php$phpversion artisan import:cities php$phpversion artisan import:cities
php$phpversion artisan instance:actor php$phpversion artisan instance:actor
php$phpversion artisan passport:client --personal <<< "\\n"
popd popd
#================================================= #=================================================