源码介绍
tobeg叫花子在线要饭新姿势,在线要饭新姿势,简洁优雅,使用 gin 做为后端框架,前端使用 vue + element-ui 构建。
目前,该项目仅仅对接了支付宝当面支付。支付宝开通当面付开通,可参考官方说明进行申请。
源码安装方法
该项目支持使用Docker-Compose进行部署,推荐自己构建最新镜像,也可以使用我构建的镜像,但可能不是最新的。
自己构建镜像
下载项目
git clone https://github.com/asksowhat/tobeg.git && cd tobeg
运行
相关配置完成之后
docker-compose up -d
使用我的镜像
将下面内容,覆盖 docker-compose.yml
version: "3"services: tobeg: image: asksowhat/tobeg:latest container_name: tobeg restart: always ports: - 10020:10020 volumes: - $PWD/config.yml:/config.yml - $PWD/flow.db:/flow.db
运行
docker-compose up -d
这里有一点要注意的是,如果你在 config.yml 更改了端口配置,需要将 docker-compose.yml 的ports配置,也要做相应的调整。