使用方式:
$ gf init -h USAGE gf init NAME ARGUMENT NAME name for the project. It will create a folder with NAME in current directory. The NAME will also be the module name for the project. EXAMPLES gf init my-app gf init my-project-name
我们可以使用init
命令在当前目录生成一个示例的GF
空框架项目,并可给定项目名称参数。生成的项目目录结构仅供参考,根据业务项目具体情况可自行调整。生成的目录结构请参考 新建项目 章节。
GF
框架开发推荐统一使用官方的go module
特性进行依赖包管理,因此空项目根目录下也有一个go.mod
文件。
使用示例:
1、在当前目录下初始化项目
$ gf init . initializing... initialization done! you can now run 'gf run main.go' to start your journey, enjoy!
2、在当前目录下创建一个名称为myapp
的项目
$ gf init myapp initializing... initialization done! you can now run 'gf run main.go' to start your journey, enjoy!
7 Comments
朱文永
gf 命令创建的项目,怎么升级框架最新的代码呢
刘羽禅
gf update
然后执行
go get -u github.com/gogf/gf
jackwu
go get -u -v -x github.com/gogf/gf
lrf
Error: got the project zip data failed: Get "https://gfcdn.johng.cn/cli/project/zip?034119b3615ebbe282d06a9be0f46694": dial tcp: lookup gfcdn.johng.cn: no such host
这要怎么设置
tomdog
LeeEcho
initializing...
Error: got the project zip data failed: parse "https://gfcdn.johng.cn/cli/project/zip?<html>\r\n<head><title>502 Bad Gateway</title></head>\r\n<body>\r\n<center><h1>502 Bad Gateway</h1></center>\r\n<hr><center>nginx/1.18.0 (Ubuntu)</center>\r\n</body>\r\n</html>\r\n": net/url: invalid control character in URL
这个要怎么解决?
ruoweileo
我也一样 估计 是旧版本的资源包官方不支持下载了