Commit 69096b09 authored by astaxie's avatar astaxie

update zh docs

parent da5dd4d1
# 安装入门 # 安装入门
beego虽然是一个简单的框架,但是其中用到了很多第三方的包,所以在你安装beego的过程中Go会自动安装其他关联的包。 beego虽然是一个简单的框架,但是其中用到了很多第三方的包,所以在你安装beego的过程中Go会自动安装其他关联的包。
- 当然第一步你需要安装Go,如何安装Go请参考我的书[第一章](https://github.com/astaxie/build-web-application-with-golang/blob/master/ebook/01.1.md) - 当然第一步你需要安装Go,如何安装Go请参考我的书[第一章](https://github.com/astaxie/build-web-application-with-golang/blob/master/ebook/01.1.md)
- 安装beego - 安装beego
go get github.com/astaxie/beego go get github.com/astaxie/beego
- 安装bee工具,这个工具可以用来快速的建立beego的应用 - 安装bee工具,这个工具可以用来快速的建立beego的应用
go get github.com/astaxie/bee go get github.com/astaxie/bee
这样就完成了beego的安装,你就可以开始开发了,可以通过bee工具来创建beego项目 这样就完成了beego的安装,你就可以开始开发了,可以通过bee工具来创建beego项目
![](images/bee.png) ![](images/bee.png)
>beego依赖的第三方包有如下: >beego依赖的第三方包有如下:
> - session模块:github.com/astaxie/beego/session > - session模块:github.com/astaxie/beego/session
> - session模块中支持redis引擎:github.com/garyburd/redigo/redis > - session模块中支持redis引擎:github.com/garyburd/redigo/redis
> - session模块中支持mysql引擎:github.com/go-sql-driver/mysql > - session模块中支持mysql引擎:github.com/go-sql-driver/mysql
> - 模板函数中支持markdown转化:github.com/russross/blackfriday
- [beego介绍](README.md)
- [beego介绍](README.md) - [快速入门](Quickstart.md)
- [快速入门](Quickstart.md)
...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
通过如下命令创建beego项目,首先进入gopath目录 通过如下命令创建beego项目,首先进入gopath目录
bee create hello bee new hello
这样就建立了一个项目hello,目录结构如下所示 这样就建立了一个项目hello,目录结构如下所示
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment