Rust로 마이그레이션
This commit is contained in:
parent
830e9c7eb9
commit
55f1cdf1bf
23 changed files with 3363 additions and 1339 deletions
26
README.md
26
README.md
|
|
@ -1,3 +1,25 @@
|
|||
# memos-rss
|
||||
# memos-rss-rs
|
||||
|
||||
제 [Memos](https://discord.gg/J3XfJ8tZRj) 디스코드 서버의 RSS 피드 알림 봇입니다.
|
||||
Discord RSS monitor written in Rust.
|
||||
|
||||
## Features
|
||||
- Periodically check RSS feeds.
|
||||
- Post new items to Discord Forum channels.
|
||||
- Category filtering support.
|
||||
- Embedded storage using `sled`.
|
||||
- Slash command support.
|
||||
|
||||
## Setup
|
||||
1. Create a `.env` file with:
|
||||
```
|
||||
DISCORD_TOKEN=your_token
|
||||
INTERVAL_MINUTES=5
|
||||
```
|
||||
2. Configure `rss.toml`.
|
||||
3. Run with `cargo run`.
|
||||
|
||||
## Docker
|
||||
```bash
|
||||
docker build -t memos-rss-rs .
|
||||
docker run --env-file .env memos-rss-rs
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue