Simple Go Web Application
cd $GO_PATH
git clone https://github.com/voyageth/frog.git github.com/voyageth/frog
cd $GO_PATH/github.com/voyageth/frog
cp server/conf/app.conf.sample server/conf/app.conf
...
# Application
app.name = frog
app.secret = #Secret here#
...
db.spec = #userId:password:db-url#
...
go get -t github.com/revel/revel
go get -t github.com/revel/cmd/revel
go get -t github.com/go-gorp/gorp
go get -t github.com/go-sql-driver/mysql
go get -t golang.org/x/crypto/bcrypt
revel build github.com/voyageth/frog/server tmp
revel run github.com/voyageth/frog/server dev 8080
from http://brantiffy.axisj.com/archives/604
Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0