Bot used for posting discussion threads for the series "Ascendance of a Bookworm" on the lemmy instance bookwormstory.social
Find a file
2023-07-31 23:01:52 +02:00
src Reduce Sleep wait interval to 1s 2023-07-31 23:01:52 +02:00
.gitignore Add .json files to git-ignore (prevent data leaks and conflicts) 2023-06-19 00:25:55 +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 Updated API to 0.18.2 2023-07-30 21:10:46 +02:00
Cargo.toml Updated API to 0.18.2 2023-07-30 21:10:46 +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 Updated readme with json info 2023-06-19 22:10:37 +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.json

{
  "instance": "string",
  "reddit_config": {
    "user_agent": "string",
    "subreddit": "string"
  },
  "feeds": [
    {
      "feed_url": "string",
      "communities": {
	    "chapter": "string",
	    "volume": "string"
      },
      "reddit": {
        "enabled": bool,
        "flair": "string"
	  },
      "discord": bool
    }
  ]
}

posts.json

[
  {
    "title",
    "last_post_url": "string"
  }
]