55 lines
1.1 KiB
TOML
55 lines
1.1 KiB
TOML
[release]
|
|
address = "0.0.0.0"
|
|
port = 9345
|
|
newsreader_database_url = "postgres://newsreader@nixos-07.h.xinu.tv/newsreader"
|
|
newsreader_tantivy_db_path = "../target/database/newsreader"
|
|
|
|
[debug]
|
|
address = "0.0.0.0"
|
|
port = 9345
|
|
# Uncomment to make it production like.
|
|
#log_level = "critical"
|
|
newsreader_database_url = "postgres://newsreader@nixos-07.h.xinu.tv/newsreader"
|
|
newsreader_tantivy_db_path = "../target/database/newsreader"
|
|
slurp_cache_path = "/net/nasx/x/letterbox/slurp"
|
|
|
|
[debug.slurp_site_selectors]
|
|
"atmeta.com" = [
|
|
"div.entry-content"
|
|
]
|
|
"blog.prusa3d.com" = [
|
|
"article.content .post-block"
|
|
]
|
|
"blog.cloudflare.com" = [
|
|
".author-lists .author-name-tooltip",
|
|
".post-full-content"
|
|
]
|
|
"blog.zsa.io" = [
|
|
"section.blog-article"
|
|
]
|
|
"engineering.fb.com" = [
|
|
"article"
|
|
]
|
|
"hackaday.com" = [
|
|
"div.entry-featured-image",
|
|
"div.entry-content"
|
|
]
|
|
"mitchellh.com" = [
|
|
"div.w-full"
|
|
]
|
|
"natwelch.com" = [
|
|
"article div.prose"
|
|
]
|
|
"slashdot.org" = [
|
|
"span.story-byline",
|
|
"div.p"
|
|
]
|
|
"www.redox-os.org" = [
|
|
"div.content"
|
|
]
|
|
"www.smbc-comics.com" = [
|
|
"img#cc-comic",
|
|
"div#aftercomic img"
|
|
]
|
|
|