EEthaniuminrollyn.hashnode.dev·Sep 1, 2022 · 2 min readBee CLI(Step 0) Initialize project c:\Users\Ethanium\Workspace>go mod init github.com/rollyn go: creating new go.mod: module github.com/rollyn c:\Users\Ethanium\Workspace> (Step 1) Create project c:\Users\Ethanium\Workspace>bee new first-demo 2022/09/01 23...00
EEthaniuminrollyn.hashnode.dev·Sep 1, 2022 · 1 min readHello World (Golang, Beego)(Step 1) Initialize workspace c:\Users\Ethanium\Workspace>go mod init github.com/rollyn go: creating new go.mod: module github.com/rollyn (Step 2) Create hello.go package main import ( "github.com/beego/beego/v2/server/web" ) type MainControlle...00
EEthaniuminrollyn.hashnode.dev·Aug 31, 2022 · 1 min readInstallation (Go, Beego, Bee)(Step 1) install https://go.dev/doc/install c:\Users>go version go version go1.18.4 windows/amd64 c:\Users> (Step 2) Install beego c:\Users>go install github.com/beego/beego/v2@latest go: downloading github.com/beego/beego/v2 v2.0.5 go: downloadin...00