Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Fever API plugin. #29

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# docker-ttrss
# docker-ttrss

This Dockerfile installs Tiny Tiny RSS (TT-RSS) with the following features:

Expand All @@ -10,6 +10,7 @@ This Dockerfile installs Tiny Tiny RSS (TT-RSS) with the following features:
- Integrated [Feedly theme](https://github.com/levito/tt-rss-feedly-theme)
- Integrated [FeedIron plugin](https://github.com/m42e/ttrss_plugin-feediron) to get modify feeds
- Integrated [Mobilize plugin](https://github.com/sepich/tt-rss-mobilize) for using Readability, Instapaper + Google Mobilizer
- Integrated [Fever API plugin](https://github.com/DigitalDJ/tinytinyrss-fever-plugin) to allow compatible RSS clients to use Tiny Tiny RSS.
- Optional: Self-signed 4096-bit RSA TLS certificate for accessing TT-RSS via https
- Originally was based on [clue/docker-ttrss](https://github.com/clue/docker-ttrss)

Expand Down
1 change: 1 addition & 0 deletions root/srv/setup-ttrss.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ setup_ttrss()
fi
git clone --depth=1 https://github.com/sepich/tt-rss-mobilize.git ${TTRSS_PATH}/plugins/mobilize
git clone --depth=1 https://github.com/m42e/ttrss_plugin-feediron.git ${TTRSS_PATH}/plugins/feediron
git clone --depth=1 https://github.com/DigitalDJ/tinytinyrss-fever-plugin ${TTRSS_PATH}/plugins/fever
git clone --depth=1 https://github.com/levito/tt-rss-feedly-theme.git ${TTRSS_PATH}/themes/feedly-git
fi

Expand Down
7 changes: 7 additions & 0 deletions root/srv/update-ttrss.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ update_plugin_feediron()
( cd ${TTRSS_PATH}/plugins/feediron && git pull origin HEAD )
}

update_plugin_fever()
{
echo "Updating: Fever API"
( cd ${TTRSS_PATH}/plugins/fever && git pull origin HEAD )
}

update_theme_feedly()
{
echo "Updating: Feedly theme"
Expand Down Expand Up @@ -60,6 +66,7 @@ update_common()
update_ttrss
update_plugin_mobilize
update_plugin_feediron
update_plugin_fever
update_theme_feedly
update_common

Expand Down