mindoc/vendor/github.com/astaxie/beego
lifei6671 d38417535a 添加依赖库 2017-04-29 22:06:11 +08:00
..
.github 添加依赖库 2017-04-29 22:06:11 +08:00
cache 添加依赖库 2017-04-29 22:06:11 +08:00
config 添加依赖库 2017-04-29 22:06:11 +08:00
context 添加依赖库 2017-04-29 22:06:11 +08:00
grace * 2017-04-19 18:19:27 +08:00
httplib 添加依赖库 2017-04-29 22:06:11 +08:00
logs 添加依赖库 2017-04-29 22:06:11 +08:00
migration 添加依赖库 2017-04-29 22:06:11 +08:00
orm 添加依赖库 2017-04-29 22:06:11 +08:00
plugins 添加依赖库 2017-04-29 22:06:11 +08:00
session 添加依赖库 2017-04-29 22:06:11 +08:00
swagger 添加依赖库 2017-04-29 22:06:11 +08:00
testing 添加依赖库 2017-04-29 22:06:11 +08:00
toolbox 添加依赖库 2017-04-29 22:06:11 +08:00
utils 添加依赖库 2017-04-29 22:06:11 +08:00
validation 添加依赖库 2017-04-29 22:06:11 +08:00
.gitignore * 2017-04-19 18:19:27 +08:00
.travis.yml * 2017-04-19 18:19:27 +08:00
CONTRIBUTING.md * 2017-04-19 18:19:27 +08:00
LICENSE * 2017-04-19 18:19:27 +08:00
README.md * 2017-04-19 18:19:27 +08:00
admin.go * 2017-04-19 18:19:27 +08:00
admin_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
adminui.go * 2017-04-19 18:19:27 +08:00
app.go * 2017-04-19 18:19:27 +08:00
beego.go * 2017-04-19 18:19:27 +08:00
config.go * 2017-04-19 18:19:27 +08:00
config_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
controller.go * 2017-04-19 18:19:27 +08:00
controller_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
doc.go * 2017-04-19 18:19:27 +08:00
error.go * 2017-04-19 18:19:27 +08:00
error_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
filter.go * 2017-04-19 18:19:27 +08:00
filter_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
flash.go * 2017-04-19 18:19:27 +08:00
flash_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
hooks.go * 2017-04-19 18:19:27 +08:00
log.go * 2017-04-19 18:19:27 +08:00
mime.go * 2017-04-19 18:19:27 +08:00
namespace.go * 2017-04-19 18:19:27 +08:00
namespace_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
parser.go * 2017-04-19 18:19:27 +08:00
policy.go * 2017-04-19 18:19:27 +08:00
router.go * 2017-04-19 18:19:27 +08:00
router_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
staticfile.go * 2017-04-19 18:19:27 +08:00
staticfile_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
template.go * 2017-04-19 18:19:27 +08:00
template_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
templatefunc.go * 2017-04-19 18:19:27 +08:00
templatefunc_test.go 添加依赖库 2017-04-29 22:06:11 +08:00
tree.go * 2017-04-19 18:19:27 +08:00
tree_test.go 添加依赖库 2017-04-29 22:06:11 +08:00

README.md

Beego

Build Status GoDoc Foundation

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.

Features

  • RESTful support
  • MVC architecture
  • Modularity
  • Auto API documents
  • Annotation router
  • Namespace
  • Powerful development tools
  • Full stack for Web & API

Documentation

Community

LICENSE

beego source code is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).