Bot used for posting discussion threads for the series "Ascendance of a Bookworm" on the lemmy instance bookwormstory.social
Find a file
2024-08-06 12:23:26 +00:00
.forgejo/workflows Bump forgejo-release to v2 2024-08-06 12:19:37 +00:00
debian Release Candidate 2.2.0-rc.3 (Fix Debian binary location in systemd file) 2023-12-30 01:37:16 +01:00
src Update to 0.19.5 and include optional thumbnail 2024-07-15 22:15:31 +02:00
.gitignore Add .directory file to gitignore 2023-12-29 14:59:31 +01:00
Cargo.lock Release 3.1.0 2024-07-15 22:15:49 +02:00
Cargo.toml Release 3.1.0 2024-07-15 22:15:49 +02:00
COPYING remove in directory config files from .gitignore, add license + add placeholder systemd unit file 2023-12-29 14:42:58 +01:00
README.md Remove erroneous note regarding passwords in README 2023-12-29 14:59:11 +01:00
rustfmt.toml Add rustfmt file 2023-09-18 20:25:41 +02:00

aob-lemmy-bot

config.toml

instance = "https://lemmy.example.org"
username = "BotUserName"
password = "BotPassword"
status_post_url = "PostUrlForStatusMonitoring"
config_reload_seconds = 10800

protected_communities = [ "community_where_pins_should_stay" ]

[[series]]
slug = "example-slug"
parted = false
[series.prepub_community]
name = "communityforprepubs"
[series.prepub_community.pin_settings]
pin_new_post_local = true
pin_new_post_community = true
[series.prepub_community.post_body]
body_type = "Custom"
body_content = """
Custom Text for the Post\n\n\
Can contain new lines and [links](https://join-lemmy.org)"""
[series.volume_community]
name = "communityforvolumes"
[series.volume_community.pin_settings]
pin_new_post_local = false
pin_new_post_community = true
[series.volume_community.post_body]
body_type = "Description"

[[series]]
slug = "example-slug-2"
parted = true
[series.prepub_community]
name = "communityforprepubs"
[series.prepub_community.pin_settings]
pin_new_post_local = false
pin_new_post_community = false
[series.prepub_community.post_body]
body_type = "Custom"
body_content = "single line content"
[series.volume_community]
name = "communityforvolumes"
[series.volume_community.pin_settings]
pin_new_post_local = false
pin_new_post_community = false
[series.volume_community.post_body]
body_type = "None"