Bot used for posting discussion threads for the series "Ascendance of a Bookworm" on the lemmy instance bookwormstory.social
Find a file
Neshura d0dccfe946
All checks were successful
Run Tests on Code / run-tests (push) Successful in 6s
Debug Release Workflow
2023-11-17 09:11:09 +00:00
.forgejo/workflows Debug Release Workflow 2023-11-17 09:11:09 +00:00
src Community Unpin Fix 2023-09-18 23:11:29 +02:00
.gitignore add toml config file to gitignore 2023-09-18 20:25:31 +02:00
.gitlab-ci.yml Update .gitlab-ci.yml file 2023-06-19 20:20:54 +00:00
automod.service Added Service files, Fixed terminal bug 2023-07-03 19:22:02 +02:00
Cargo.lock Threading Implementation for higher stability 2023-08-31 23:36:37 +02:00
Cargo.toml Threading Implementation for higher stability 2023-08-31 23:36:37 +02:00
deploy.sh Threading Implementation for higher stability 2023-08-31 23:36:37 +02:00
jnovel-example.json Automatic Lemmy Post creation using jnovel rss feeds only on new chapter 2023-06-19 00:26:50 +02:00
README.md Switch Readme to toml config 2023-09-18 21:04:44 +02:00
rustfmt.toml Add rustfmt file 2023-09-18 20:25:41 +02:00

ascendance-of-a-bookworm-bot

secrets.json

{
  "lemmy": {
    "username": "string",
    "password": "string"
  },
  "reddit": {
    "app_id": "string",
    "app_secret": "string",
    "refresh_token": "string",
    "redirect_uri": "string"
  },
  "discord": {}
}

config.toml

[urls]
instance = "base URL of Lemmy Instance"
uptime_kuma = "Uptime Kuma Ping URL"

[settings]
config_reload = 360 # Time in Minutes between Config reloads


[[feeds]]
id = 0 # incrementor, only used for correctly matching post history data
series_slug = "ascendance-of-a-bookworm" # series slug on J-Novel Club

[communities]
chapter = "aobprepub" # Community for Chapter Posts of the Series
volume = "aoblightnovel" # Community for Volume Posts of the Series


[[feeds]] # See previous example
id = 1
series_slug = "ascendance-of-a-bookworm-short-story-collection"

[communities]
chapter = "aobprepub"
volume = "aoblightnovel"

posts.json

[
  {
    "id": number,
    "title",
    "last_volume_slug": "string",
    "last_volume_time": "string",
    "last_part_slug": "string",
    "last_part_time": "string"
  }
]