├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── conf ├── addon.config.php ├── local-sample.config.php ├── nginx.conf └── systemd.service ├── doc ├── ADMIN.md ├── ADMIN_fr.md ├── DESCRIPTION.md ├── DESCRIPTION_fr.md ├── POST_INSTALL.md ├── POST_INSTALL_fr.md ├── PRE_UPGRADE.d │ ├── 2023.12~ynh3.md │ └── 2024.12-1~ynh3.md └── screenshots │ └── friendica-vier-profile.png ├── manifest.toml ├── scripts ├── backup ├── change_url ├── install ├── remove ├── restore └── upgrade ├── tags └── tests.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/README.md -------------------------------------------------------------------------------- /conf/addon.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/conf/addon.config.php -------------------------------------------------------------------------------- /conf/local-sample.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/conf/local-sample.config.php -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/conf/systemd.service -------------------------------------------------------------------------------- /doc/ADMIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/ADMIN.md -------------------------------------------------------------------------------- /doc/ADMIN_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/ADMIN_fr.md -------------------------------------------------------------------------------- /doc/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/DESCRIPTION.md -------------------------------------------------------------------------------- /doc/DESCRIPTION_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/DESCRIPTION_fr.md -------------------------------------------------------------------------------- /doc/POST_INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/POST_INSTALL.md -------------------------------------------------------------------------------- /doc/POST_INSTALL_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/POST_INSTALL_fr.md -------------------------------------------------------------------------------- /doc/PRE_UPGRADE.d/2023.12~ynh3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/PRE_UPGRADE.d/2023.12~ynh3.md -------------------------------------------------------------------------------- /doc/PRE_UPGRADE.d/2024.12-1~ynh3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/PRE_UPGRADE.d/2024.12-1~ynh3.md -------------------------------------------------------------------------------- /doc/screenshots/friendica-vier-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/doc/screenshots/friendica-vier-profile.png -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/manifest.toml -------------------------------------------------------------------------------- /scripts/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/scripts/backup -------------------------------------------------------------------------------- /scripts/change_url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/scripts/change_url -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/scripts/remove -------------------------------------------------------------------------------- /scripts/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/scripts/restore -------------------------------------------------------------------------------- /scripts/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/scripts/upgrade -------------------------------------------------------------------------------- /tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/tags -------------------------------------------------------------------------------- /tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/friendica_ynh/HEAD/tests.toml --------------------------------------------------------------------------------