mirror of
https://codeberg.org/Reuh/feather.git
synced 2025-10-28 02:29:32 +00:00
Initial commit
This commit is contained in:
commit
824d0ad839
8 changed files with 1054 additions and 0 deletions
23
config.default.toml
Normal file
23
config.default.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[server]
|
||||
# (Required) URL of your server's Google Reader API endpoint
|
||||
url = "https://rss.example.com/"
|
||||
# (Required) Username/email-adress used to connect to the server
|
||||
user = "username"
|
||||
# (Required) Password/API password used to connect to the server
|
||||
password = "password"
|
||||
# How many items to retrieve at most from the server in a single request. Lower values will make synchronization slower, higher values might make the server complain.
|
||||
# Most servers are supposedly okay with up to 1000, but tt-rss complained so I dropped it to 500 here.
|
||||
items_per_request = 500
|
||||
|
||||
[directories]
|
||||
# Directory path where the internal feather data will be stored.
|
||||
data = "data"
|
||||
# Directory path where the user-facing files will be stored.
|
||||
reader = "reader"
|
||||
|
||||
[time]
|
||||
# Which timezone to use when writing date and time.
|
||||
timezone = "Etc/UTC"
|
||||
# How date and time are formatted. See https://docs.python.org/3/library/datetime.html#strftime-strptime-behavior for the supported codes.
|
||||
# This will be used in filenames so it's a good idea to use something sortable...
|
||||
format = "%Y-%m-%d %H:%M"
|
||||
Loading…
Add table
Add a link
Reference in a new issue