| 作者: Witton Bell
| 293 字
| 1 分钟
首先创建容器 1sudo podman pull golang:1.21 2sudo podman run -itd --name go-dlv golang:1.21 然后使用命令 1sudo podman exec -it go-dlv /bin/bash 进入容器,在容器内执行下面的命令安装go调试器dlv: 1go env -w GOPROXY=https://goproxy.cn,direct ……
阅读全文
| 作者: Witton Bell
| 2080 字
| 5 分钟
一、前言 在游戏中,任务是非常常见的玩法,可能会有主线任务,支线任务以及其它一些类型的任务,各任务可能还会有前置任务,即需 ……
阅读全文
| 作者: Witton Bell
| 876 字
| 2 分钟
我们在编写软件时,一般会有版本号以及生成的时间,Go编译的程序中,如何添加当时的编译时间以及版本信息? C/C++语言,非 ……
阅读全文
| 作者: Witton Bell
| 902 字
| 2 分钟
文章目录 一、环境配置 二、部署 1、编写Dockerfile 2、编写容器编排文件 3、设置Goland部署配置 4、执行部署 三、 ……
阅读全文