From 76debb1899c10ac69356497d543f854c6a5dfa9f Mon Sep 17 00:00:00 2001 From: Acmefocus <37472851+Acmefocus@users.noreply.github.com> Date: Thu, 9 Jul 2020 17:18:01 +0800 Subject: [PATCH 1/4] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 3b414c6f..aacd237e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,15 @@ It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific feature go get github.com/astaxie/beego +#### Create hello directory + + sudo mkdir hello + cd hello + +#### Init module + + go mod init + #### Create file `hello.go` ```go package main From 40cdc877b618279ba598fb550a64c2b0f0325f53 Mon Sep 17 00:00:00 2001 From: Acmefocus <37472851+Acmefocus@users.noreply.github.com> Date: Thu, 9 Jul 2020 17:18:01 +0800 Subject: [PATCH 2/4] Update README.md Signed-off-by: Acmefocus <107723772@qq.com> --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 3b414c6f..aacd237e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,15 @@ It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific feature go get github.com/astaxie/beego +#### Create hello directory + + sudo mkdir hello + cd hello + +#### Init module + + go mod init + #### Create file `hello.go` ```go package main From 25ba78ea7247a6d05356a3012f7f0df7ddc92633 Mon Sep 17 00:00:00 2001 From: Acmefocus <107723772@qq.com> Date: Thu, 9 Jul 2020 18:14:31 +0800 Subject: [PATCH 3/4] update README.md Signed-off-by: Acmefocus <107723772@qq.com> --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aacd237e..a9acfcc1 100644 --- a/README.md +++ b/README.md @@ -12,11 +12,11 @@ It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific feature go get github.com/astaxie/beego -#### Create hello directory +#### Create `hello` directory, cd `hello` directory - sudo mkdir hello + mkdir hello cd hello - + #### Init module go mod init From 2b9aaa5b0d45a6a0a1009eea5575c3d62e8f4210 Mon Sep 17 00:00:00 2001 From: Acmefocus <107723772@qq.com> Date: Fri, 10 Jul 2020 09:58:06 +0800 Subject: [PATCH 4/4] update README.md Signed-off-by: Acmefocus <107723772@qq.com> --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a9acfcc1..de8f0063 100644 --- a/README.md +++ b/README.md @@ -8,18 +8,18 @@ It is inspired by Tornado, Sinatra and Flask. beego has some Go-specific feature ## Quick Start -#### Download and install - - go get github.com/astaxie/beego - #### Create `hello` directory, cd `hello` directory - mkdir hello - cd hello + mkdir hello + cd hello #### Init module - go mod init + go mod init + +#### Download and install + + go get github.com/astaxie/beego #### Create file `hello.go` ```go