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

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