mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 05:10:56 +00:00
1.1 KiB
1.1 KiB
Installation
Beego is a simple web framework, but it uses many third-party packages, so you have to install all dependency packages also.
-
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
-
Use
go get
to install Beego:go get github.com/astaxie/beego
-
Install bee tools for fast-develop Beego applications:
go get github.com/astaxie/bee
Good job, you're ready to Beego with powerful bee tools!
Beego has following dependency packages:
-
Session module: github.com/astaxie/beego/session
-
To support redis engine: github.com/garyburd/redigo/redis
-
To support mysql engine: github.com/go-sql-driver/mysql
-
To support markdown as template function: github.com/russross/blackfriday