Skip to content

Gudsfile/pochurl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pochurl

CI/CD Pipeline uv Ruff

Personal RSS feed for links you want to read later.

Deployment

Before the first deploy, set the API key secret used to authenticate add_entry:

firebase functions:secrets:set POCHURL_API_KEY

Then deploy:

firebase deploy

Usage

Add Links

To add entries to your RSS feed, use your Cloud Functions endpoint with your API key:

curl --request POST \
     --url https://add-entry-<SOMETHING>.app/ \
     --header 'Content-Type: application/json' \
     --header 'X-API-Key: <YOUR_API_KEY>' \
     --data '{
         "link": "<THE LINK TO READ LATER>"
     }'

You can also specify a category:

curl --request POST \
     --url https://add-entry-<SOMETHING>.app/ \
     --header 'Content-Type: application/json' \
     --header 'X-API-Key: <YOUR_API_KEY>' \
     --data '{
         "link": "<THE LINK>",
         "category": "github"
     }'

Available categories: github, docs, article, misc

See more examples.

Read Feed

Your RSS feed is available at your function's address (e.g., https://get-entries-<SOMETHING>.app).

You can use your favorite RSS feed reader (NetNewsWire or any other) to read your "Read it Later" links.

Filtered Feeds

You can also subscribe to specific categories:

  • get-github - GitHub repositories
  • get-articles - Blog posts and articles
  • get-docs - Documentation
  • get-misc - Miscellaneous links

Examples

Apple Shortcut

You can use the adding query in several ways.

For example, with Apple Shortcuts (like this one: Pochurl Shortcut) you can simply add a link to your feed from the share menu.

Apple Shortcut usage

About

📚 pochurl - Read it later!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors