From bbb3c3e7e1c8d16fb5d93a17ad510f2e442c915e Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Tue, 14 Apr 2020 22:20:59 +0200 Subject: [PATCH] change config --- config.toml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/config.toml b/config.toml index f536da1..023d66c 100644 --- a/config.toml +++ b/config.toml @@ -1,17 +1,20 @@ -# This defines the base directory for the feeds relative to this config file -base_directory = '~/spiderss' +# This defines the base directory for the feeds. Please use an absolute path. +base_directory = '/home//rss' # Articles older than max_age will be deleted and not be added max_age = 30 -# Feeds - the category can be empty ('') +# Feeds +# The category can be empty (''). The feed fill then be stored in the base_directory. +# The category can also be a path, which will result in subdirectories (e.g. 'technology/hardware'). +# The name can also be empty (''). feeds with the same category will then be stored in the same directory. [[feed]] category = 'News' -name = 'Tagesschau' -url = 'https://www.tagesschau.de/xml/rss2' +name = 'Newssite' +url = 'https://example.org/feed' [[feed]] category = 'News' -name = 'Vice' -url = 'https://www.vice.com/de/rss' +name = 'Newssite 2' +url = 'https://example.org/feed'