使用方式:

    1. $ gf init -h
    2. USAGE
    3. gf init NAME
    4. ARGUMENT
    5. NAME name for the project. It will create a folder with NAME in current directory.
    6. The NAME will also be the module name for the project.
    7. EXAMPLES
    8. gf init my-app
    9. gf init my-project-name

    我们可以使用init命令在当前目录生成一个示例的GF空框架项目,并可给定项目名称参数。生成的项目目录结构仅供参考,根据业务项目具体情况可自行调整。生成的目录结构请参考 新建项目 章节。

    GF框架开发推荐统一使用官方的go module特性进行依赖包管理,因此空项目根目录下也有一个go.mod文件。

    使用示例:

    1、在当前目录下初始化项目

    1. $ gf init .
    2. initializing...
    3. initialization done!
    4. you can now run 'gf run main.go' to start your journey, enjoy!

    2、在当前目录下创建一个名称为myapp的项目

    1. $ gf init myapp
    2. initializing...
    3. initialization done!
    4. you can now run 'gf run main.go' to start your journey, enjoy!