go环境及bee工具安装
1.解压go安装包:tar -xvf go1.11.1.linux-amd64.tar.gz -C /usr/local/
2.设置go环境变量export GOROOT=/usr/local/goexport GOPATH=/app/appsexport GOBIN=$GOROOT/binexport PATH=$PATH:$GOBIN:$GOPATH/bin
3 go环境验证
go version go version go1.11.1 linux/amd64
二、bee工具安装第一种方式 go get github.com/beego/bee 会把编译好的bee可执行文件放到$GOPATH/bin,所以需要提前设置好PATH环境变量第二种方式 手动上传并编译bee打开github网页,克隆并下载bee源码上传bee源码到/app/apps/src/github.com/beego/cd /app/apps/src/github.com/beego/;gu build将可执行文件bee 转移到$GOPATH/bin执行 bee测试安装是否成功
bee环境验证
bee version ______| ___ \| |_/ / ___ ___| ___ \ / _ \ / _ \| |_/ /| __/| __/\____/ \___| \___| v1.10.0?..? Beego : Beego is not installed. Please do consider installing it first: https://github.com/astaxie/beego?..? GoVersion : go1.11.1?..? GOOS : linux?..? GOARCH : amd64?..? NumCPU : 4?..? GOPATH : /app/apps?..? GOROOT : /usr/local/go?..? Compiler : gc?..? Date : Wednesday, 5 Dec 2018
三、新建一个bee工程
]# bee new webad ______| ___ \| |_/ / ___ ___| ___ \ / _ \ / _ \| |_/ /| __/| __/\____/ \___| \___| v1.10.02018/12/05 11:02:27 INFO ??0001 Creating application... create /app/apps/src/webad/ create /app/apps/src/webad/conf/ create /app/apps/src/webad/controllers/ create /app/apps/src/webad/models/ create /app/apps/src/webad/routers/ create /app/apps/src/webad/tests/ create /app/apps/src/webad/static/ create /app/apps/src/webad/static/js/ create /app/apps/src/webad/static/css/ create /app/apps/src/webad/static/img/ create /app/apps/src/webad/views/ create /app/apps/src/webad/conf/app.conf create /app/apps/src/webad/controllers/default.go create /app/apps/src/webad/views/index.tpl create /app/apps/src/webad/routers/router.go create /app/apps/src/webad/tests/default_test.go create /app/apps/src/webad/main.go 2018/12/05 11:02:27 SUCCESS ??0002 New application successfully created!
四、下载beego并运行beegogo get github.com/astaxie/beego或者手动下载上传(参考bee工具手动安装)运行beego
webad]# bee run ______| ___ \| |_/ / ___ ___| ___ \ / _ \ / _ \| |_/ /| __/| __/\____/ \___| \___| v1.10.02018/12/05 11:10:00 INFO ??0001 Using 'webad' as 'appname'2018/12/05 11:10:00 INFO ??0002 Initializing watcher...github.com/astaxie/beego/configgithub.com/astaxie/beego/utilsgithub.com/astaxie/beego/vendor/gopkg.in/yaml.v2github.com/astaxie/beego/logsgithub.com/astaxie/beego/sessiongithub.com/astaxie/beego/gracegithub.com/astaxie/beego/toolboxgithub.com/astaxie/beego/vendor/golang.org/x/crypto/acmegithub.com/astaxie/beego/vendor/golang.org/x/crypto/acme/autocertgithub.com/astaxie/beego/contextgithub.com/astaxie/beego/context/paramgithub.com/astaxie/beegowebad/controllerswebad/routerswebad2018/12/05 11:10:03 SUCCESS ??0003 Built Successfully!2018/12/05 11:10:03 INFO ??0004 Restarting 'webad'...2018/12/05 11:10:03 SUCCESS ??0005 './webad' is running...2018/12/05 11:10:03.937 [I] [asm_amd64.s:1333] http server Running on http://:6789
- 访问页面
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。