# license-active-server **Repository Path**: lisong521/license-active-server ## Basic Information - **Project Name**: license-active-server - **Description**: A license server for Jrebel Intellij - **Primary Language**: Go - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 17 - **Created**: 2019-12-01 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Jrebel 激活服务器 By GoLang - [实现原理和实现代码参考Java版本:https://gitee.com/gsls200808/JrebelLicenseServerforJava](https://gitee.com/gsls200808/JrebelLicenseServerforJava) >Java开发者刚刚学GO,练手.... ## Win编译 ```shell SET CGO_ENABLED=0 SET GOOS=linux SET GOARCH=amd64 go build ./ ``` - GOOS - linux - windows - darwin : 苹果系统 - GOARCH: - amd64 : 64位 - 386: : 32位 ## Mac编译 ```shell CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build ./ ``` ## docker ```shell docker run --rm --env GOPROXY=https://goproxy.cn -v "$PWD":/root -w /root/src/project/main golang:latest go build ./ -v ``` ## 运行 默认端口: 12345 ```shell # 自定义端口 ./license-active-server --port=5555 ```