https://github.com/daymade/channel-gateway
支付渠道网关 - 不写代码,不部署,3 小时接入新支付渠道。提供配置化的渠道接入能力,渠道业务参数在线配置,可视化,可拖拽,低代码
https://github.com/daymade/channel-gateway
Last synced: about 1 month ago
JSON representation
支付渠道网关 - 不写代码,不部署,3 小时接入新支付渠道。提供配置化的渠道接入能力,渠道业务参数在线配置,可视化,可拖拽,低代码
- Host: GitHub
- URL: https://github.com/daymade/channel-gateway
- Owner: daymade
- Created: 2024-05-17T14:36:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-06T14:01:04.000Z (about 2 years ago)
- Last Synced: 2025-01-26T17:41:36.910Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 122 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
构建
```shell
cd channel-gateway
DOCKER_BUILDKIT=1 docker build -t channel-gateway .
```
使用代理加速构建
```shell
DOCKER_BUILDKIT=1 docker build -t channel-gateway . --build-arg https_proxy=http://192.168.31.221:7890 --build-arg http_proxy=http://192.168.31.221:7890 --progress=plain
```
临时运行
```shell
docker run -p 9090:9090 channel-gateway
```
后台运行
```shell
docker run -d -p 9090:9090 channel-gateway
```