lifei6671 d38417535a 添加依赖库 8 years ago
..
.github d38417535a 添加依赖库 8 years ago
cache d38417535a 添加依赖库 8 years ago
config d38417535a 添加依赖库 8 years ago
context d38417535a 添加依赖库 8 years ago
grace 4ebc28a431 * 8 years ago
httplib d38417535a 添加依赖库 8 years ago
logs d38417535a 添加依赖库 8 years ago
migration d38417535a 添加依赖库 8 years ago
orm d38417535a 添加依赖库 8 years ago
plugins d38417535a 添加依赖库 8 years ago
session d38417535a 添加依赖库 8 years ago
swagger d38417535a 添加依赖库 8 years ago
testing d38417535a 添加依赖库 8 years ago
toolbox d38417535a 添加依赖库 8 years ago
utils d38417535a 添加依赖库 8 years ago
validation d38417535a 添加依赖库 8 years ago
.gitignore 4ebc28a431 * 8 years ago
.travis.yml 4ebc28a431 * 8 years ago
CONTRIBUTING.md 4ebc28a431 * 8 years ago
LICENSE 4ebc28a431 * 8 years ago
README.md 4ebc28a431 * 8 years ago
admin.go 4ebc28a431 * 8 years ago
admin_test.go d38417535a 添加依赖库 8 years ago
adminui.go 4ebc28a431 * 8 years ago
app.go 4ebc28a431 * 8 years ago
beego.go 4ebc28a431 * 8 years ago
config.go 4ebc28a431 * 8 years ago
config_test.go d38417535a 添加依赖库 8 years ago
controller.go 4ebc28a431 * 8 years ago
controller_test.go d38417535a 添加依赖库 8 years ago
doc.go 4ebc28a431 * 8 years ago
error.go 4ebc28a431 * 8 years ago
error_test.go d38417535a 添加依赖库 8 years ago
filter.go 4ebc28a431 * 8 years ago
filter_test.go d38417535a 添加依赖库 8 years ago
flash.go 4ebc28a431 * 8 years ago
flash_test.go d38417535a 添加依赖库 8 years ago
hooks.go 4ebc28a431 * 8 years ago
log.go 4ebc28a431 * 8 years ago
mime.go 4ebc28a431 * 8 years ago
namespace.go 4ebc28a431 * 8 years ago
namespace_test.go d38417535a 添加依赖库 8 years ago
parser.go 4ebc28a431 * 8 years ago
policy.go 4ebc28a431 * 8 years ago
router.go 4ebc28a431 * 8 years ago
router_test.go d38417535a 添加依赖库 8 years ago
staticfile.go 4ebc28a431 * 8 years ago
staticfile_test.go d38417535a 添加依赖库 8 years ago
template.go 4ebc28a431 * 8 years ago
template_test.go d38417535a 添加依赖库 8 years ago
templatefunc.go 4ebc28a431 * 8 years ago
templatefunc_test.go d38417535a 添加依赖库 8 years ago
tree.go 4ebc28a431 * 8 years ago
tree_test.go d38417535a 添加依赖库 8 years ago

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).