simple-server/README.md

15 lines
410 B
Markdown
Raw Permalink Normal View History

2020-11-07 17:28:09 +08:00
# Simple Server for UnlockMusic
- 一个简易的单文件部署的本地Http服务器
- 基于Golang 1.16的embed功能
- 方便普通使用者运行和部署
2020-11-07 20:03:53 +08:00
## 使用方法
2020-11-07 17:28:09 +08:00
### 从Release下载
- [Release](https://github.com/unlock-music/simple-server/releases)
### 手动构建
2020-12-28 14:20:23 +08:00
- 安装golang 1.16以上的版本(Tips 2020/12/28: Golang1.16当前为beta状态)
2020-11-07 17:28:09 +08:00
```shell script
go generate
go build
2020-11-07 20:03:53 +08:00
```