~vesto/feedon

2b5c9952d0d57d64632be5a458e36e4debf1a698 — Steve Gattuso 1 year, 1 month ago 78dc6bd
ugh
2 files changed, 2 insertions(+), 2 deletions(-)

M README.md
M feedon/blueprints/auth.py
M README.md => README.md +1 -1
@@ 1,7 1,7 @@
# FeeDon
FeeDon is a service for Mastodon instances that allows users to generate RSS feeds from their home timeline, local timeline, and any lists they've created. Technically speaking you can _mostly_ do this by just subscribing to individual users' timelines in your RSS reader, but this doesn't work well if you want to keep your RSS reader in-sync with who you follow or follow users with private posts.

<img src="https://git.sr.ht/~vesto/feedon/blob/main/docs/images/screenshot.png" width="400" alt="A screenshot of FeedOn in action" />
<img src="https://git.sr.ht/~vesto/feedon/blob/main/docs/images/screenshot.png" width="400" alt="A screenshot of FeeDon in action" />

## Getting started
While it's perfectly possible to run your own instance, it's much easier to use somebody else's instance. If this takes off I hope to run a publicly accessible instance for others, but given that the project is still in its early phases I'm limiting my instance for a select number of testers.

M feedon/blueprints/auth.py => feedon/blueprints/auth.py +1 -1
@@ 44,7 44,7 @@ def begin():
            resp = requests.post(
                url=f"https://{instance_domain}/api/v1/apps",
                data={
                    'client_name': 'FeedOn',
                    'client_name': 'FeeDon',
                    'redirect_uris': generate_redirect_uri(instance_domain),
                    'scope': scope,
                    'website': os.environ.get('BASE_URL'),