├── .gitignore ├── conf └── config.yaml └── kendo /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, build with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | -------------------------------------------------------------------------------- /conf/config.yaml: -------------------------------------------------------------------------------- 1 | #dev | test | beta | prod 2 | APP_MODE: prod 3 | APP_PORT: 12345 4 | GRPC_PORT: 54321 5 | LOG_FILE: /var/log/kendo/ddd.log 6 | #K8S配置相关 7 | K8S_MODE: Outer 8 | #数据库配置 9 | MYSQL_DSN: root:sa@tcp(127.0.0.1:3306)/mydb?charset=utf8mb4&loc=Local&parseTime=true&timeout=3s 10 | MYSQL_MAXOPEN: 15 11 | MYSQL_MAXIDLE: 3 12 | #Redis配置 13 | REDIS_ADDR: redis:6379 14 | REDIS_PSW: qDf9s 15 | REDIS_DB: 0 16 | -------------------------------------------------------------------------------- /kendo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KendoCross/KendoPay/f72591d537f8cacc645ba6db1fe520d23eba8faa/kendo --------------------------------------------------------------------------------