1. 程式人生 > >Beego物語(一)安裝,helloworld,除錯

Beego物語(一)安裝,helloworld,除錯

安裝

cd %GOPATH%/src

//安裝beego
go get github.com/astaxie/beego

//安裝bee
go get github.com/beego/bee

helloworld

//生成一個專案
bee new my-app

//執行專案
bee run my-app

在Goland中執行和除錯

在Goland中使用 bee run 需要 Edit Configurations , 否則不能載入資原始檔

Goland debug  還是用 go build main.go 但需要指定資源路徑 , 釋出的時候可以將這個硬編碼刪除 -_-!