Getting Beego to work on AWS

huangapple go评论67阅读模式
英文:

Getting Beego to work on AWS

问题

我目前正在寻找一个地方,可以了解在AWS上运行Beego(或类似的GOlang)框架的相关信息。有人知道这样的地方吗?

英文:

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?

答案1

得分: 1

你有一个(日语-谷歌翻译)教程,教你如何在AWS上安装Beego。
除了安装git、go和beego之外,它没有涉及任何特殊的内容。

sudo yum install git mercurial
yum install ld-linux.so.2

# 以root身份运行 curl -L -O https://go.googlecode.com/files/go1.2.1.linux-386.tar.gz
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

文章"设置一个由Beego驱动的网站"还建议使用其他一些工具,例如:

英文:

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:

huangapple
  • 本文由 发表于 2014年9月13日 13:10:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/25820014.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定