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

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