52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
# Backoff before lurkers restart after dying
|
|
backoff = "5m"
|
|
|
|
# Reddit information
|
|
[reddit]
|
|
# Reddit Agent Info
|
|
app_name = "Lurk"
|
|
version = "0.1"
|
|
|
|
# https://www.reddit.com/prefs/apps
|
|
client_id = ""
|
|
client_secret = ""
|
|
|
|
# Reddit credentials
|
|
username = ""
|
|
password = ""
|
|
|
|
# A list of subreddites to monitor
|
|
# allow/blocklist can be omitted in real config if empty
|
|
[[reddit.sub]]
|
|
name = ""
|
|
icon_url = ""
|
|
flair_allowlist = []
|
|
flair_blocklist = []
|
|
title_allowlist = []
|
|
title_blocklist = []
|
|
title_limit = 0
|
|
body_allowlist = []
|
|
body_blocklist = []
|
|
body_limit = 0
|
|
webhook = ""
|
|
|
|
# Twitter information
|
|
[twitter]
|
|
# Auth
|
|
consumer_key = ""
|
|
consumer_secret = ""
|
|
access_token = ""
|
|
access_secret = ""
|
|
|
|
# A list of filters to watch for
|
|
# Empty fields can be omitted in a real config
|
|
[[twitter.filter]]
|
|
# follows must use a Twitter user's ID
|
|
# https://tweeterid.com/
|
|
follows = []
|
|
# strict mode means only original tweets will be ingested
|
|
follow_strict = false
|
|
locations = []
|
|
tracks = []
|
|
webhook = ""
|