findpenguins-feed/README.md

58 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2023-11-15 15:26:35 +00:00
# Find Penguins Feed
Quick & dirty tool to turn [Find Penguins](https://findpenguins.com) footprints
into a rss feeds.
There is no storage involved and every call to the feed builds it anew. Because
this is done by web-scraping, it should not be done too often, as you might get
rate limited or blocked.
This was written to track a family member's journey without having to register
or madly refreshing the website all five minutes.
It only needed to work for that specific journey but maybe someone else finds it
useful.
# Building
Install [rust](https://www.rust-lang.org/) and run `cargo build --release`. This
gives you a binary `./target/release/findpenguins-feed>` which is directly
executable.
# Configuration
2023-11-18 16:29:05 +00:00
Configuration is handled with a configuration file and/or environment variables.
2023-11-15 15:26:35 +00:00
The configuration file is sourced from the following locations, depending on the
operating system:
- \*nix: `$XDG_CONFIG_HOME/.config/findpenguins-feed/config.toml`
- Windows: `{FOLDERID_RoamingAppData}/findpenguins-feed/config/config.toml`
- macOS: `$HOME/Library/Preferences/ch.vanwa.findpenguins-feed/config.toml`
2023-11-18 16:29:44 +00:00
Environment variable always take precedence.
2023-11-15 15:26:35 +00:00
## server_address
IP and port the server should listen on.
- default: `[::1]:3000`
- env var: `FINDPENGUINS_FEED__SERVER_ADDRESS`
## feeds
List of find penguin journeys to track.
- default: `[]`
- env var: `FINDPENGUINS_FEED__FEEDS` (urls are comma separated)
Example configuration file:
```
server_address = "[::1]:4000"
feeds = [
"https://findpenguins.com/1234/trip/trip-2023",
"https://findpenguins.com/1234/trip/trip-2022"
]
```