开源地址:webhookit
DEMO 预览地址:http://webhookit.hust.cc/
使用 Flask 做的,代码很少更简单,部署更加简单。
之前写过一个比较复杂的,带有比较好 web UI 界面的 git-webhook ,虽然使用起来比较爽,但是开始部署的时候还是比较麻烦的。
所以简化了这个项目,形成新项目:https://github.com/hustcc/webhookit,主要是简化部署。
pip install webhookit之后,系统会有两个命令工具: webhookit , webhookit_config 。
怎么使用,我举个简单的例子:
# 1. install webhookit
pip install webhookit
# 2. initial a webhookit config file
webhookit_config > /home/hustcc/webhook-configs/config4hustcc.py
# 3. update config4hustcc.py with your own config and save
vim config4hustcc.py
# 4. run webhookit http server
webhookit -c config4hustcc.py
然后打开 http://host:18340 看到页面,就说明部署成功了。然后将 http://host:18340/webhookit 加入到 webhook 中即可。欢迎反馈问题。