2020-11-02 02:26:54 +00:00
|
|
|
# QotNews settings
|
|
|
|
# edit this file and save it as settings.py
|
|
|
|
|
|
|
|
# Feed Lengths
|
|
|
|
# Number of top items from each site to pull
|
|
|
|
# set to 0 to disable that site
|
2022-07-04 06:05:33 +00:00
|
|
|
FEED_LENGTH = 75
|
2020-11-02 02:26:54 +00:00
|
|
|
NUM_HACKERNEWS = 15
|
2020-12-12 05:26:33 +00:00
|
|
|
NUM_LOBSTERS = 10
|
2022-03-05 21:58:35 +00:00
|
|
|
NUM_REDDIT = 15
|
2020-11-02 02:26:54 +00:00
|
|
|
NUM_TILDES = 5
|
|
|
|
|
2022-03-05 21:58:35 +00:00
|
|
|
# Meilisearch server URL
|
|
|
|
# Leave blank if not using search
|
|
|
|
#MEILI_URL = 'http://127.0.0.1:7700/'
|
|
|
|
MEILI_URL = ''
|
|
|
|
|
2022-03-05 22:04:25 +00:00
|
|
|
# Readerserver URL
|
|
|
|
# Leave blank if not using, but that defeats the whole point
|
|
|
|
READER_URL = 'http://127.0.0.1:33843/'
|
|
|
|
|
2020-11-02 02:26:54 +00:00
|
|
|
# Reddit account info
|
|
|
|
# leave blank if not using Reddit
|
|
|
|
REDDIT_CLIENT_ID = ''
|
|
|
|
REDDIT_CLIENT_SECRET = ''
|
|
|
|
REDDIT_USER_AGENT = ''
|
|
|
|
|
|
|
|
SUBREDDITS = [
|
|
|
|
'Economics',
|
|
|
|
'AcademicPhilosophy',
|
|
|
|
'DepthHub',
|
|
|
|
'Foodforthought',
|
|
|
|
'HistoryofIdeas',
|
|
|
|
'LaymanJournals',
|
|
|
|
'PhilosophyofScience',
|
|
|
|
'StateOfTheUnion',
|
|
|
|
'TheAgora',
|
|
|
|
'TrueReddit',
|
|
|
|
'culturalstudies',
|
|
|
|
'hardscience',
|
|
|
|
'indepthsports',
|
|
|
|
'indepthstories',
|
|
|
|
'ludology',
|
|
|
|
'neurophilosophy',
|
|
|
|
'resilientcommunities',
|
|
|
|
'worldevents',
|
2020-12-12 05:26:33 +00:00
|
|
|
'StallmanWasRight',
|
|
|
|
'EverythingScience',
|
2022-03-05 21:58:35 +00:00
|
|
|
'longevity',
|
2020-11-02 02:26:54 +00:00
|
|
|
]
|