Start translation to brazilian portuguese

This commit is contained in:
Gustavo Kuklinski
2015-07-05 22:56:01 -03:00
parent ce5c48445f
commit 51f3d94db4
273 changed files with 16240 additions and 0 deletions

10
pt-br/13.6.md Normal file
View File

@@ -0,0 +1,10 @@
# 13.6 Summary
In this chapter, we described how to implement the major components of a Go web framework. We first designed a router to make up for some of shortcomings in Go's built-in `http` package, creating a router capable of dynamic routing and REST support. We also designed our own RESTful Controller class in accord with the principles of MVC, borrowing ideas from frameworks such as Tornado. Next, we designed and implemented a template layout and automated rendering system, mainly using Go's built-in templating engine. We then implemented a custom logger and talked about framework configuration to allow for flexible application deployment. Through this process, we have implemented a basic web framework called Beego which, at present, has been open-sourced on Github. Lastly, we implemented a simple blogging application on top of Beego. After having gone through all of these examples, you will hopefully have learned how to quickly develop websites in Go.
## Links
- [Directory](preface.md)
- Previous section: [Add, delete and update blogs](13.5.md)
- Next chapter: [Develop web framework](14.0.md)