fatedier 0f1005ff61 using glide | 7 éve | |
---|---|---|
.. | ||
.github | 7 éve | |
cache | 7 éve | |
config | 7 éve | |
context | 7 éve | |
grace | 7 éve | |
httplib | 7 éve | |
logs | 7 éve | |
migration | 7 éve | |
orm | 7 éve | |
plugins | 7 éve | |
session | 7 éve | |
swagger | 7 éve | |
testing | 7 éve | |
toolbox | 7 éve | |
utils | 7 éve | |
validation | 7 éve | |
.gitignore | 7 éve | |
.travis.yml | 7 éve | |
CONTRIBUTING.md | 7 éve | |
LICENSE | 7 éve | |
README.md | 7 éve | |
admin.go | 7 éve | |
admin_test.go | 7 éve | |
adminui.go | 7 éve | |
app.go | 7 éve | |
beego.go | 7 éve | |
config.go | 7 éve | |
config_test.go | 7 éve | |
controller.go | 7 éve | |
controller_test.go | 7 éve | |
doc.go | 7 éve | |
error.go | 7 éve | |
error_test.go | 7 éve | |
filter.go | 7 éve | |
filter_test.go | 7 éve | |
flash.go | 7 éve | |
flash_test.go | 7 éve | |
hooks.go | 7 éve | |
log.go | 7 éve | |
mime.go | 7 éve | |
namespace.go | 7 éve | |
namespace_test.go | 7 éve | |
parser.go | 7 éve | |
policy.go | 7 éve | |
router.go | 7 éve | |
router_test.go | 7 éve | |
staticfile.go | 7 éve | |
staticfile_test.go | 7 éve | |
template.go | 7 éve | |
template_test.go | 7 éve | |
templatefunc.go | 7 éve | |
templatefunc_test.go | 7 éve | |
tree.go | 7 éve | |
tree_test.go | 7 éve |
beego is used for rapid development of RESTful APIs, web apps and backend services in Go. It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific features such as interfaces and struct embedding.
More info beego.me
##Quick Start ######Download and install
go get github.com/astaxie/beego
######Create file hello.go
package main
import "github.com/astaxie/beego"
func main(){
beego.Run()
}
######Build and run
go build hello.go
./hello
######Congratulations!
You just built your first beego app.
Open your browser and visit http://localhost:8080
.
Please see Documentation for more.
beego source code is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).