[CommaFeed] Personal RSS reader

CommaFeed for YunoHost

Integration level Working status
Maintenance status

Install CommaFeed with YunoHost

Overview

Google Reader inspired self-hosted RSS reader, based on Quarkus and React/TypeScript.

Shipped version: 5.3.4~ynh1

Demo: https://www.commafeed.com/#/app/category/all

Screenshots

Documentation and resources

1 Like

Thanks for this!
Do you know how can i make the site public and remove the login window (similar to the demo site)?

Where is the config php file stored? it’s not in /var/www or ../yunohost.app/commafeed.

Answer: you have to create it

cd /var/www/commafeed
mkdir /config/
touch applications.properties

edit this to have commafeed.http-client.block-local-addresses=false if you want to use commafeed with rsshub or rssbridge

or, with a .env file like on this PR: Env by ericgaspar Ā· Pull Request #17 Ā· YunoHost-Apps/commafeed_ynh Ā· GitHub

1 Like

Thank you for your labour!!

For the reference of others, slight typos:

cd /var/www/commafeed
mkdir config
cd config
touch application.properties

(ā€œapplicationā€ should be singular)

that’s probably why my config directory disappeared!

Yes, if you keep that slash before config, then it will create that folder in the root directory, not in the commafeed directory.

The applications.properties file is recommended on their GitHub; it looks like the /config/ directory autodeletes on update though!

Could you clarify which folder needs to be kept during the upgrade? For now, we are keeping the data folder.

/etc/www/commafeed/config :slight_smile:

This should fix the issue on upgrading the app

1 Like

thank you so much for your labour!!

I tried the testing branch and I can confirm that it fixes the issue! no other issues so it should be ok to pull to master when you have the chance