Skip to content

Instantly share code, notes, and snippets.

@hawkup
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hawkup/d02970a2711e9cf84669 to your computer and use it in GitHub Desktop.
Save hawkup/d02970a2711e9cf84669 to your computer and use it in GitHub Desktop.
Install bee (Golang framework)

Prerequisite

  • git
  • git https
git config --global http.sslVerify false
  • Install
go get github.com/astaxie/beego
  • Upgrade
go get -u github.com/astaxie/beego
  • Installing bee tool
go get github.com/beego/bee
  • add GOPATH/bin to your PATH (see SET $GOPATH)
https://gist.github.com/hawkup/dae817eb0110cf8d5702
  • create new Project
bee new <project name>
  • run Project
cd <project>
bee run

reference: http://beego.me/docs/install/bee.md

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment