2022-06-20 08:57:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
go get -u github.com/gin-gonic/gin
|
|
|
|
```
|
|
|
|
|
|
|
|
### 打包
|
|
|
|
|
|
|
|
```shell
|
|
|
|
go build -o server main.go
|
|
|
|
```
|
|
|
|
|
|
|
|
![](http://file.569781231.xyz/building/202206200853025.png)
|
|
|
|
|
|
|
|
|
|
|
|
### 依赖包到本地
|
|
|
|
|
|
|
|
```shell
|
|
|
|
go mod vendor
|
2022-06-20 09:02:40 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
### 热更新
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# 安装
|
|
|
|
go install github.com/cosmtrek/air@latest
|
|
|
|
|
|
|
|
# 初始化
|
|
|
|
air init
|
|
|
|
# 运行
|
|
|
|
air -c .air.toml
|
2022-06-20 08:57:47 +08:00
|
|
|
```
|