1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-25 06:24:14 +00:00

Update README.md

This commit is contained in:
Ketan Gupta 2017-03-28 11:29:20 +05:30 committed by GitHub
parent 323a1c4214
commit fdb2660a2a

View File

@ -9,12 +9,12 @@ It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific feature
More info [beego.me](http://beego.me)
##Quick Start
######Download and install
## Quick Start
###### Download and install
go get github.com/astaxie/beego
######Create file `hello.go`
###### Create file `hello.go`
```go
package main
@ -24,12 +24,12 @@ func main(){
beego.Run()
}
```
######Build and run
###### Build and run
```bash
go build hello.go
./hello
```
######Congratulations!
###### Congratulations!
You just built your first beego app.
Open your browser and visit `http://localhost:8080`.
Please see [Documentation](http://beego.me/docs) for more.