This repository has been archived on 2022-11-08. You can view files and clone it, but cannot push or open issues or pull requests.
simple-server/README.md

15 lines
410 B
Markdown
Raw Permalink Normal View History

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