abiao c6cb47a90a init system 5 years ago
..
cache c6cb47a90a init system 5 years ago
config c6cb47a90a init system 5 years ago
context c6cb47a90a init system 5 years ago
example c6cb47a90a init system 5 years ago
grace c6cb47a90a init system 5 years ago
httplib c6cb47a90a init system 5 years ago
logs c6cb47a90a init system 5 years ago
middleware c6cb47a90a init system 5 years ago
migration c6cb47a90a init system 5 years ago
orm c6cb47a90a init system 5 years ago
plugins c6cb47a90a init system 5 years ago
session c6cb47a90a init system 5 years ago
swagger c6cb47a90a init system 5 years ago
testing c6cb47a90a init system 5 years ago
toolbox c6cb47a90a init system 5 years ago
utils c6cb47a90a init system 5 years ago
validation c6cb47a90a init system 5 years ago
.gitignore c6cb47a90a init system 5 years ago
.travis.yml c6cb47a90a init system 5 years ago
CONTRIBUTING.md c6cb47a90a init system 5 years ago
LICENSE c6cb47a90a init system 5 years ago
README.md c6cb47a90a init system 5 years ago
admin.go c6cb47a90a init system 5 years ago
adminui.go c6cb47a90a init system 5 years ago
app.go c6cb47a90a init system 5 years ago
beego.go c6cb47a90a init system 5 years ago
config.go c6cb47a90a init system 5 years ago
config_test.go c6cb47a90a init system 5 years ago
controller.go c6cb47a90a init system 5 years ago
controller_test.go c6cb47a90a init system 5 years ago
doc.go c6cb47a90a init system 5 years ago
docs.go c6cb47a90a init system 5 years ago
error.go c6cb47a90a init system 5 years ago
filter.go c6cb47a90a init system 5 years ago
filter_test.go c6cb47a90a init system 5 years ago
flash.go c6cb47a90a init system 5 years ago
flash_test.go c6cb47a90a init system 5 years ago
hooks.go c6cb47a90a init system 5 years ago
log.go c6cb47a90a init system 5 years ago
memzipfile.go c6cb47a90a init system 5 years ago
mime.go c6cb47a90a init system 5 years ago
namespace.go c6cb47a90a init system 5 years ago
namespace_test.go c6cb47a90a init system 5 years ago
parser.go c6cb47a90a init system 5 years ago
router.go c6cb47a90a init system 5 years ago
router_test.go c6cb47a90a init system 5 years ago
staticfile.go c6cb47a90a init system 5 years ago
staticfile_test.go c6cb47a90a init system 5 years ago
template.go c6cb47a90a init system 5 years ago
template_test.go c6cb47a90a init system 5 years ago
templatefunc.go c6cb47a90a init system 5 years ago
templatefunc_test.go c6cb47a90a init system 5 years ago
tree.go c6cb47a90a init system 5 years ago
tree_test.go c6cb47a90a init system 5 years ago

README.md

Beego

Build Status GoDoc

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