diff --git a/README.md b/README.md index 2fba64f..5e41906 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Use Tiktok with an alternative frontend, inspired by Nitter. - RSS Feed for user, trending and tag (just add /rss to the url) -**Shipped version:** 2.2.0.0~ynh1 +**Shipped version:** 2.2.0.0~ynh2 **Demo:** https://proxitok.herokuapp.com/ diff --git a/README_fr.md b/README_fr.md index e98abb2..a4db91b 100644 --- a/README_fr.md +++ b/README_fr.md @@ -24,7 +24,7 @@ Use Tiktok with an alternative frontend, inspired by Nitter. - RSS Feed for user, trending and tag (just add /rss to the url) -**Version incluse :** 2.2.0.0~ynh1 +**Version incluse :** 2.2.0.0~ynh2 **Démo :** https://proxitok.herokuapp.com/ diff --git a/conf/.env b/conf/.env index 3f8d4f7..ec62dbd 100644 --- a/conf/.env +++ b/conf/.env @@ -3,7 +3,7 @@ APP_PATH="" # Relative path, PLEASE LEAVE EMPTY IF / LATTE_CACHE= # Path for Latte cache, leave commented for ./cache/latte # API CONFIG -# API_FORCE_LEGACY=1 # Force legacy mode for wrapper +API_FORCE_LEGACY=1 # Force legacy mode for wrapper # API_SIGNER_URL="https://__DOMAIN__" # External signing service # API_BROWSER_URL="http://localhost:4444" # chromedriver url # API_TEST_ENDPOINTS=1 # Discomment for usage of testing TikTok endpoints, may help sometimes diff --git a/manifest.json b/manifest.json index b43e5c6..ad53c75 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Alternative frontend for TikTok", "fr": "Frontend alternatif à TikTok" }, - "version": "2.2.0.0~ynh1", + "version": "2.2.0.0~ynh2", "url": "https://proxitok.herokuapp.com", "upstream": { "license": "AGPL-3.0-only", diff --git a/scripts/upgrade b/scripts/upgrade index 98be255..61a4d84 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -57,7 +57,7 @@ then ynh_script_progression --message="Upgrading source files..." --weight=1 # Download, check integrity, uncompress and patch the source from app.src - ynh_setup_source --dest_dir="$final_path" --keep="$final_path/.env" + ynh_setup_source --dest_dir="$final_path" #--keep="$final_path/.env" fi chmod 750 "$final_path" @@ -87,6 +87,16 @@ ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=1 # Create a dedicated PHP-FPM config ynh_add_fpm_config +#================================================= +# ADD A CONFIGURATION +#================================================= +ynh_script_progression --message="Adding a configuration file..." --weight=1 + +ynh_add_config --template="../conf/.env" --destination="$final_path/.env" + +chmod 400 "$final_path/.env" +chown $app:$app "$final_path/.env" + #================================================= # INSTALL PROXITOK WITH COMPOSER #=================================================