(beego)搭建GO语言 WEB框架 BEEGO 的WINDOWS环境过程

1.首先安装 bee

   在网站github.com/beego/bee上下载bee的源代码包,然后解压在gopath的src目录下,目录重命名为bee

  然后运行cmd命令,进入gopath的src目录,运行 :

  go build bee

  成功后,运行安装命令:

  go install bee

  成功后,在cmd上面运行 bee命令,就可以看到以下提示:


Bee is a tool for managing beego framework.

Usage:

        bee command [arguments]

The commands are:

    new         create an application base on beego framework
    run         run the app which can hot compile
    pack        compress an beego project
    api         create an api application base on beego framework
    router      auto-generate routers for the app controllers
    test        test the app
    bale        packs non-Go files to Go source files

Use "bee help [command]" for more information about a command.



Additional help topics:

2. 进入gopath的src目录,运用bee命令,创建项目:

    bee new quickstart

    进入quickstart目录,运行run命令,编译运行项目:

    bee run

    其中,发生了很多缺少包的错误,通过查看提示,在github.com上都可以下载,并且解压到提示的目录下。

    解决这个问题,运行成功

3.在浏览器输入http://本地IP:8080/,可以看到beego的欢迎页面:

   

  

   

你可能感兴趣的:(beego)