Rust로 마이그레이션

This commit is contained in:
암냥 2026-01-09 09:29:48 +09:00
commit 55f1cdf1bf
No known key found for this signature in database
23 changed files with 3363 additions and 1339 deletions

View file

@ -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
```