From 6299523e699db484ac7dafe1352b592d4f3848c1 Mon Sep 17 00:00:00 2001 From: xpnas Date: Thu, 25 Mar 2021 01:25:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fa2038c..0340483 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,25 @@ # inotify -## a message notify center for weChat and telegram and email -## 一个简易的消息通知系统,支持企业微信、电报机器人、邮件推送 [![后端docker构建](https://github.com/xpnas/Inotify/actions/workflows/dockerservice.yml/badge.svg)](https://github.com/xpnas/Inotify/actions/workflows/dockerservice.yml) [![前端docker构建](https://github.com/xpnas/Inotify/actions/workflows/dockervue.yml/badge.svg)](https://github.com/xpnas/Inotify/actions/workflows/dockervue.yml) +a message notify center for weChat and telegram and email + +一个简易的消息通知系统,支持企业微信、电报机器人、邮件推送 + +## 使用方法 + 1. 下载docker-compose.yaml文件 + 2. 执行docker-compose up -d + 3. 配置Nginx代理 + ``` + server + { + location / { + proxy_pass http://127.0.0.1:8000; + } + location /api { + proxy_pass http://127.0.0.1:8001; + } + } + ``` + 4. 默认用户名admin,密码123456 +