Bot used for posting discussion threads for the series "Ascendance of a Bookworm" on the lemmy instance bookwormstory.social
Find a file
2023-12-29 14:44:06 +01:00
.forgejo/workflows Update release actions, add pull-request check 2023-12-29 14:29:57 +01:00
debian remove in directory config files from .gitignore, add license + add placeholder systemd unit file 2023-12-29 14:42:58 +01:00
src Move username and password to config file 2023-12-29 14:35:07 +01:00
.gitignore remove in directory config files from .gitignore, add license + add placeholder systemd unit file 2023-12-29 14:42:58 +01:00
automod.service Added Service files, Fixed terminal bug 2023-07-03 19:22:02 +02:00
Cargo.lock Renaming the project from ascendance-of-a-bookworm-bot to a shorter aob-lemmy-bot 2023-12-29 14:43:55 +01:00
Cargo.toml remove dotenv dependency 2023-12-29 14:44:06 +01:00
COPYING remove in directory config files from .gitignore, add license + add placeholder systemd unit file 2023-12-29 14:42:58 +01:00
deploy.sh Threading Implementation for higher stability 2023-08-31 23:36:37 +02:00
README.md Renaming the project from ascendance-of-a-bookworm-bot to a shorter aob-lemmy-bot 2023-12-29 14:43:55 +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" # Note: Passwords containing special characters might need to be escaped using '\\'
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"