39 lines
901 B
Markdown
39 lines
901 B
Markdown
# 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 文档。
|