2026-02-07 17:05:06 +00:00

39 lines
901 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Apprise Notify Center - 多通道通知中心
一个基于 apprise 的多通道通知服务,支持 Web 管理界面。
## 项目概述
- **技术栈**: Python + FastAPI + SQLite + Vue3
- **核心功能**: HTTP API 发送通知、通道管理、历史记录、手动发送
- **支持服务**: 80+ 种通知渠道Discord、Telegram、邮件、Webhook 等)
## 快速开始
```bash
# 安装依赖
pip install -r requirements.txt
# 启动服务
python main.py
# 访问管理界面
open http://localhost:8000
```
## 项目结构
```
.
├── AGENTS.md # OpenClaw 项目规范
├── docs/
│ └── plans/ # 设计文档
├── backend/ # FastAPI 后端
├── frontend/ # Vue3 前端
└── tests/ # 测试用例
```
## API 文档
服务启动后访问 `/docs` 查看自动生成的 API 文档。