2023-06-19 20:10:37 +00:00
|
|
|
# ascendance-of-a-bookworm-bot
|
|
|
|
|
|
|
|
**secrets.json**
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"lemmy": {
|
|
|
|
"username": "string",
|
|
|
|
"password": "string"
|
|
|
|
},
|
|
|
|
"reddit": {
|
|
|
|
"app_id": "string",
|
|
|
|
"app_secret": "string",
|
|
|
|
"refresh_token": "string",
|
|
|
|
"redirect_uri": "string"
|
|
|
|
},
|
|
|
|
"discord": {}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**config.json**
|
|
|
|
```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
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"title",
|
|
|
|
"last_post_url": "string"
|
|
|
|
}
|
|
|
|
]
|