使用方式:

$ 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!
  • No labels

7 Comments

  1. gf 命令创建的项目,怎么升级框架最新的代码呢

    1. gf update

      然后执行 go get -u github.com/gogf/gf

  2. 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

    这要怎么设置

      1. ping goframe.org  , 得到一个ip地址
      2. 修改hosts文件, 将 gfcdn.johng.cn 指向第一步得到的地址
  3. 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 

    这个要怎么解决?

    1. 我也一样 估计 是旧版本的资源包官方不支持下载了