1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 10:33:27 +00:00
beego mirror
Go to file
2014-01-04 00:04:15 +08:00
cache fix #430 2014-01-01 20:50:06 +08:00
config Merge remote-tracking branch 'astaxie/master' 2013-12-24 21:59:37 +08:00
context fix code with no need line 2013-12-26 00:44:49 +08:00
example fix #413 2013-12-30 22:51:54 +08:00
httplib add comments for httplib package. 2013-12-27 17:11:39 +08:00
logs add comments in logs package 2013-12-30 23:32:57 +08:00
middleware added back a <br> 2014-01-02 09:54:15 -05:00
orm fix #440 2014-01-04 00:04:15 +08:00
session #369 set maxlifetime, close conn 2013-12-14 23:33:24 +08:00
testing fix #277 2013-11-06 16:51:33 +08:00
toolbox add listconf fix #351 2013-12-15 21:22:50 +08:00
utils move safemap to utils & add many helpful slice function 2013-12-12 22:40:29 +08:00
validation fix MinSize / MaxSize / Length should use Rune Count 2013-10-16 22:49:06 +08:00
.gitignore add git ignore file 2013-06-01 13:31:14 +08:00
admin.go fix typo healthcheck url 2013-12-29 11:01:19 +08:00
app.go add AutoRouterWithPrefix 2014-01-01 17:57:57 +08:00
beego.go add AutoRouterWithPrefix 2014-01-01 17:57:57 +08:00
config.go gofmt commented go file 2013-12-20 23:15:00 +08:00
controller.go fix typo error 2013-12-28 20:14:36 +08:00
filter.go 1. :all param default expr change from (.+) to (.*) 2013-12-30 15:06:51 +08:00
fiter_test.go 1. :all param default expr change from (.+) to (.*) 2013-12-30 15:06:51 +08:00
flash.go add api comments in file config.go, controller.go, filter.go and flash.go 2013-12-20 21:16:26 +08:00
log.go convert to unix eol 2013-12-23 11:46:11 +08:00
memzipfile.go add api comments in file memzipfile.go,reload.go,router.go,template.go and templatefunc.go, fix spelling error GetInitListner as GetInitListener. 2013-12-21 13:19:24 +08:00
mime.go move initmime from beego.Run to hookfunc 2013-12-31 00:34:47 +08:00
README.md Update README.md 2013-12-22 15:56:15 +08:00
reload.go add api comments in file memzipfile.go,reload.go,router.go,template.go and templatefunc.go, fix spelling error GetInitListner as GetInitListener. 2013-12-21 13:19:24 +08:00
router_test.go add AutoRouterWithPrefix 2014-01-01 17:57:57 +08:00
router.go add AutoRouterWithPrefix 2014-01-01 17:57:57 +08:00
template_test.go fix #260 2013-10-30 23:02:53 +08:00
template.go fix comments typo in beego package/ 2013-12-22 15:09:33 +08:00
templatefunc_test.go move utils to utils libs & func move to templatefunc 2013-12-12 22:25:08 +08:00
templatefunc.go fix comments typo in beego package/ 2013-12-22 15:09:33 +08:00

beego

Build Status

beego is a Go Framework inspired by tornado and sinatra.

It is a simple & powerful web framework.

More info beego.me

Features

  • RESTful support
  • MVC architecture
  • Session support (store in memory, file, Redis or MySQL)
  • Cache support (store in memory, Redis or Memcache)
  • Global Config
  • Intelligent routing
  • Thread-safe map
  • Friendly displaying of errors
  • Useful template functions

Documentation

English

API

中文文档

LICENSE

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

Use case