Bot used for posting discussion threads for the series "Ascendance of a Bookworm" on the lemmy instance bookwormstory.social
Find a file
Neshura c6297b9157
All checks were successful
Run Tests on Code / run-tests (push) Successful in 33s
Install clippy during Actions
2023-12-19 22:21:52 +01:00
.forgejo/workflows Install clippy during Actions 2023-12-19 22:21:52 +01:00
src Replaced custom structs in favor of github tag version, removed unused dependencies 2023-12-19 22:08:23 +01:00
.gitignore Remove API Examples from Repo 2023-12-18 14:22:33 +01:00
automod.service Added Service files, Fixed terminal bug 2023-07-03 19:22:02 +02:00
Cargo.lock Updated Cargo.toml for previous commit + Release 2.1.4 2023-12-19 22:08:59 +01:00
Cargo.toml Updated Cargo.toml for previous commit + Release 2.1.4 2023-12-19 22:08:59 +01:00
deploy.sh Threading Implementation for higher stability 2023-08-31 23:36:37 +02:00
README.md Update README 2023-12-18 14:22:42 +01:00
rustfmt.toml Add rustfmt file 2023-09-18 20:25:41 +02:00

ascendance-of-a-bookworm-bot

.env

LEMMY_USERNAME="BotUserName"
LEMMY_PASSWORD="BotPassword"

Note: Passwords containing special characters might need to be escaped using ''

config.toml

instance = "https://lemmy.example.org"
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"