1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nitter_ynh.git synced 2024-09-03 19:46:24 +02:00

Merge pull request #43 from YunoHost-Apps/testing

Testing 2023.08.08~ynh2
This commit is contained in:
OniriCorpe 2024-02-15 05:56:43 +01:00 committed by GitHub
commit 8096425333
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 22 additions and 39 deletions

View file

@ -16,7 +16,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
## Overview ## Overview
A free and open source alternative Twitter front-end focused on privacy and performance. Nitter is a free and open source alternative Twitter front-end focused on privacy and performance.
Inspired by the Invidious project. Inspired by the Invidious project.
### Features ### Features
@ -31,7 +31,7 @@ Inspired by the Invidious project.
- Mobile support (responsive design) - Mobile support (responsive design)
**Shipped version:** 2023.08.08~ynh1 **Shipped version:** 2023.08.08~ynh2
**Demo:** https://nitter.net/ **Demo:** https://nitter.net/

View file

@ -30,7 +30,7 @@ Nitter est une interface alternative pour Twitter qui est plus rapide que le sit
- Support mobile (conception réactive) - Support mobile (conception réactive)
**Version incluse :** 2023.08.08~ynh1 **Version incluse :** 2023.08.08~ynh2
**Démo :** https://nitter.net/ **Démo :** https://nitter.net/

View file

@ -1 +1 @@
Nitter config file is stored in `/var/www/nitter/nitter.conf` (for the first instance, subsequent installs will go in `nitter__2`, `nitter__3`, etc). Users can override the defaults and set custom settings at `https://__DOMAIN__/settings`. Nitter config file is stored in `__INSTALL_DIR__/nitter.conf`. Users can override the defaults and set custom settings at `https://__DOMAIN__/settings`.

View file

@ -1 +1 @@
Le ficher de configuration de Nitter se trouve à `/var/www/nitter/nitter.conf` (pour la première installation, les prochaines installations iront dans `nitter__2`, `nitter__3`, etc). Les utilisateurs peuvent modifier les paramétres par défaut en visitant `https://__DOMAIN__/settings`. Le ficher de configuration de Nitter se trouve à `__INSTALL_DIR__/nitter.conf`. Les utilisateurs peuvent modifier les paramétres par défaut en visitant `https://__DOMAIN__/settings`.

View file

@ -1,4 +1,4 @@
A free and open source alternative Twitter front-end focused on privacy and performance. Nitter is a free and open source alternative Twitter front-end focused on privacy and performance.
Inspired by the Invidious project. Inspired by the Invidious project.
### Features ### Features

View file

@ -5,7 +5,7 @@ name = "Nitter"
description.en = "Alternative front-end for Twitter that respects your privacy" description.en = "Alternative front-end for Twitter that respects your privacy"
description.fr = "Interface alternative pour Twitter qui respecte votre vie privée" description.fr = "Interface alternative pour Twitter qui respecte votre vie privée"
version = "2023.08.08~ynh1" version = "2023.08.08~ynh2"
maintainers = ["Jules Bertholet"] maintainers = ["Jules Bertholet"]
@ -20,8 +20,11 @@ code = "https://github.com/zedeus/nitter"
yunohost = ">= 11.2" yunohost = ">= 11.2"
architectures = "all" architectures = "all"
multi_instance = true multi_instance = true
ldap = false ldap = false
sso = true sso = true
disk = "50M" disk = "50M"
ram.build = "2000M" ram.build = "2000M"
ram.runtime = "50M" ram.runtime = "50M"
@ -64,6 +67,7 @@ ram.runtime = "50M"
[resources.sources.main] [resources.sources.main]
url = "https://github.com/zedeus/nitter/tarball/d7ca353a55ea3440a2ec1f09155951210a374cc7" url = "https://github.com/zedeus/nitter/tarball/d7ca353a55ea3440a2ec1f09155951210a374cc7"
sha256 = "028ec2f9c93c9f65259d4a6632ee4a77d9b43516921f4e741e94cfcbb0530f4a" sha256 = "028ec2f9c93c9f65259d4a6632ee4a77d9b43516921f4e741e94cfcbb0530f4a"
autoupdate.strategy = "latest_github_commit"
[resources.sources.nim] [resources.sources.nim]
amd64.url = "https://nim-lang.org/download/nim-1.6.14-linux_x64.tar.xz" amd64.url = "https://nim-lang.org/download/nim-1.6.14-linux_x64.tar.xz"
@ -85,4 +89,4 @@ ram.runtime = "50M"
main.url = "/" main.url = "/"
[resources.apt] [resources.apt]
packages = "acl nim libsass-dev" packages = "acl, nim, libsass-dev"

View file

@ -56,7 +56,7 @@ set_permissions
# Use logrotate to manage application logfile(s) # Use logrotate to manage application logfile(s)
ynh_use_logrotate ynh_use_logrotate
yunohost service add $app --description="Alternative front-end for Twitter that respects your privacy" --log="/var/log/$app/$app.log" yunohost service add $app --description="Alternative front-end for Twitter" --log="/var/log/$app/$app.log"
#================================================= #=================================================
# ADD A CONFIGURATION # ADD A CONFIGURATION

View file

@ -37,7 +37,7 @@ systemctl enable $app.service --quiet
ynh_use_logrotate --non-append ynh_use_logrotate --non-append
ynh_restore_file --origin_path="/etc/logrotate.d/$app" ynh_restore_file --origin_path="/etc/logrotate.d/$app"
yunohost service add $app --description="Alternative front-end for Twitter that respects your privacy" --log="/var/log/$app/$app.log" yunohost service add $app --description="Alternative front-end for Twitter" --log="/var/log/$app/$app.log"
#================================================= #=================================================
# START SYSTEMD SERVICE # START SYSTEMD SERVICE

View file

@ -50,14 +50,6 @@ fi
chmod -R o-rwx "$install_dir" chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir" chown -R $app:www-data "$install_dir"
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
#================================================= #=================================================
# SPECIFIC UPGRADE # SPECIFIC UPGRADE
#================================================= #=================================================
@ -75,36 +67,23 @@ build_nitter
#ynh_add_config --template="nitter.conf" --destination="$install_dir/nitter.conf" #ynh_add_config --template="nitter.conf" --destination="$install_dir/nitter.conf"
#================================================= #=================================================
# SETUP SYSTEMD # REAPPLY SYSTEM CONFIGURATIONS
#================================================= #=================================================
ynh_script_progression --message="Upgrading systemd configuration..." --weight=1 ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
# Create a dedicated systemd config # Create a dedicated systemd config
ynh_add_systemd_config ynh_add_systemd_config
#================================================= # Use logrotate to manage app-specific logfile(s)
# SECURE FILES AND DIRECTORIES ynh_use_logrotate --non-append
#=================================================
# Set permissions on app files # Set permissions on app files
set_permissions set_permissions
#================================================= yunohost service add $app --description="Alternative front-end for Twitter" --log="/var/log/$app/$app.log"
# GENERIC FINALIZATION
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Upgrading logrotate configuration..." --weight=1
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
yunohost service add $app --description="Alternative front-end for Twitter that respects your privacy" --log="/var/log/$app/$app.log"
#================================================= #=================================================
# START SYSTEMD SERVICE # START SYSTEMD SERVICE