installation, incomplete quick start
Showing
3 changed files
with
26 additions
and
1 deletions
docs/en/Install.md
0 → 100644
| 1 | #Installation | ||
| 2 | Beego is a simple web framework, but it uses many third-party packages, so you have to install all dependency packages also. | ||
| 3 | |||
| 4 | - Before anything you do, you have to check that you installed Go in your computer, see more detail about Go installation in my book: [Chapter 1](https://github.com/Unknwon/build-web-application-with-golang_EN/blob/master/eBook/01.1.md) | ||
| 5 | - Use `go get ` to install Beego: | ||
| 6 | |||
| 7 | go get github.com/astaxie/beego | ||
| 8 | |||
| 9 | - Install bee tools for fast-develop Beego applications: | ||
| 10 | |||
| 11 | go get github.com/astaxie/bee | ||
| 12 | |||
| 13 | Good job, you're ready to Beego with powerful bee tools! | ||
| 14 | |||
| 15 |  | ||
| 16 | |||
| 17 | Beego has following dependency packages: | ||
| 18 | |||
| 19 | - Session module: [github.com/astaxie/beego/session](github.com/astaxie/beego/session) | ||
| 20 | - To support redis engine: [github.com/garyburd/redigo/redis](github.com/garyburd/redigo/redis) | ||
| 21 | - To support mysql engine: [github.com/go-sql-driver/mysql](github.com/go-sql-driver/mysql) | ||
| 22 | - To support markdown as template function: [github.com/russross/blackfriday](github.com/russross/blackfriday) | ||
| 23 | |||
| 24 | - [Introduction](README.md) | ||
| 25 | - [Quick start](Quickstart.md) | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
docs/en/Quickstart.md
0 → 100644
This diff is collapsed.
Click to expand it.
| ... | @@ -6,7 +6,7 @@ Remember when I was writing the book about how to build web applications with Go | ... | @@ -6,7 +6,7 @@ Remember when I was writing the book about how to build web applications with Go |
| 6 | I used to use CI in PHP and tornado in Python, there are both lightweight, so they has following advantages: | 6 | I used to use CI in PHP and tornado in Python, there are both lightweight, so they has following advantages: |
| 7 | 7 | ||
| 8 | 1. Save time for handling general problems, I only need to care about logic part. | 8 | 1. Save time for handling general problems, I only need to care about logic part. |
| 9 | 2. Learn more languages by studying their source code, it's not hard to read and understand them because they are both lightweight frameworks. | 9 | 2. Learn more about languages by studying their source code, it's not hard to read and understand them because they are both lightweight frameworks. |
| 10 | 3. It's quite easy to make secondary development of these frameworks for specific purposes. | 10 | 3. It's quite easy to make secondary development of these frameworks for specific purposes. |
| 11 | 11 | ||
| 12 | Those reasons are my original intention of implementing Beego, and used two chapters in my book to introduce and design this lightweight web framework in GO. | 12 | Those reasons are my original intention of implementing Beego, and used two chapters in my book to introduce and design this lightweight web framework in GO. | ... | ... |
-
Please register or sign in to post a comment