I'm currently looking for a place where I can read about running the Beego (or similar GOlang) framework on AWS. Would anyone know a place?
Asked
Active
Viewed 515 times
1 Answers
1
You have a (Japanese- google translated) tutorial to install Beego to AWS.
It doesn't involve anything special, except installing git, go and beego
sudo yum install git mercurial
yum install ld-linux.so.2
# Run curl -L -O https://go.googlecode.com/files/go1.2.1.linux-386.tar.gz as root
tar zxvf go1.2.1.linux-386.tar.gz -C / usr / local
/etc/profile.d/go.sh
export GOROOT = / usr / local / go
export GOPATH = / var / local / gocode
export PATH = $ PATH: $ GOROOT / bin: $ GOPATH / bin
go get github.com/astaxie/beego
go get github.com/beego/bee
The article "Setup a website powered by Beego" suggests a few other tools as well, like:

VonC
- 1,262,500
- 529
- 4,410
- 5,250