refactor: update README and docker-compose for clarity and simplicity

This commit is contained in:
leo 2026-03-05 12:55:01 +08:00
parent f453a7917e
commit 80988c6580
3 changed files with 2 additions and 9 deletions

View File

@ -26,16 +26,11 @@ cp .env.example .env
### 3. 启动
**Docker 方式(推荐)**
**Docker 方式**
```bash
docker-compose up -d
```
**本地运行**
```bash
pip install -r requirements.txt
python -m bot.main
```
## 使用说明

View File

@ -68,7 +68,7 @@ async def input_title(update: Update, context: ContextTypes.DEFAULT_TYPE) -> int
return INPUT_TITLE
context.user_data["title"] = title
await update.message.reply_text("请输入提醒描述(可选,直接发送"跳过"")
await update.message.reply_text("请输入提醒描述(可选,直接发送\"跳过\"")
return INPUT_DESC

View File

@ -1,5 +1,3 @@
version: "3.9"
services:
reminderbot:
build: .