Skip to content

Commit 929f375

Browse files
authored
feat(v2.3.x): support v2.3.x (#13)
* feat(v2.3.x): support v2.3.x support v2.3.x * feat(session): add SessionReleaseIfPresent detail add SessionReleaseIfPresent detail
1 parent c26b7d6 commit 929f375

File tree

136 files changed

+16340
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+16340
-0
lines changed

docs/en-US/v2.3.x/README.md

+129
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
---
2+
title: Quickly Start
3+
lang: en-US
4+
---
5+
6+
# Quickly Start
7+
8+
First make sure you have GO installed, version 1.16 or higher, and that you have set the GOPATH environment variable and added GOPATH/bin to the environment variable.
9+
10+
> We recommend that you simply use the latest stable version, as we try to stay on top of the latest version of Go.
11+
12+
Or you can refer:
13+
14+
[Windows installation](environment/install_go_windows.md)
15+
16+
[Linux installation](environment/install_go_linux.md)
17+
18+
[Mac installation](environment/install_go_mac.md)
19+
20+
**Please note that after `Beego` V2 we require the `go mod` feature, make sure that the `go mod` feature is turned on, i.e. `GO111MODULE=on`**. More details refer to [Go module](environment/go_mod.md)
21+
22+
Or you can specify the GOPROXY:
23+
24+
```shell
25+
GOPROXY=https://goproxy.cn
26+
```
27+
28+
Next, let's try to start a `hello world` example. In this example, we will use the `Bee` tool to create the `hello world` project.
29+
30+
More details refer to [Bee](./bee/README.md)
31+
32+
## Steps
33+
34+
If you already have a development environment installed, then you may consider using our quick install script.
35+
36+
### Mac or Linux
37+
38+
Run:
39+
40+
```shell
41+
bash <(curl -s https://raw.githubusercontent.com/beego/beego-doc/main/scripts/quickstart.sh)
42+
```
43+
44+
Or using wget:
45+
46+
```shell
47+
bash <(wget -qO- https://raw.githubusercontent.com/beego/beego-doc/main/scripts/quickstart.sh)
48+
```
49+
50+
### Windows
51+
52+
Using `curl`
53+
54+
```shell
55+
bash <(curl -s https://raw.githubusercontent.com/beego/beego-doc/main/scripts/quickstart.bat)
56+
```
57+
58+
Or `wget`
59+
60+
```shell
61+
bash <(wget -qO- https://raw.githubusercontent.com/beego/beego-doc/main/scripts/quickstart.bat)
62+
```
63+
64+
## Manual Installation
65+
66+
In this section, we will use the `go get` command, so if you are not familiar with it, we suggest that you read [Go get](environment/go_get_command.md)
67+
68+
Always remember, if you experience network problems, or timeout issues, make sure you set up the `GOPROXY` proxy.
69+
70+
### Install Bee
71+
72+
Run:
73+
74+
```shell
75+
go get -u github.com/beego/bee/v2@latest
76+
```
77+
78+
And then
79+
80+
```shell
81+
bee version
82+
```
83+
84+
you can see:
85+
86+
```shell
87+
| ___ \
88+
| |_/ / ___ ___
89+
| ___ \ / _ \ / _ \
90+
| |_/ /| __/| __/
91+
\____/ \___| \___| v2.0.x
92+
93+
├── Beego : Beego is not installed. Please do consider installing it first: https://github.com/beego/beego/v2. If you are using go mod, and you don't install the beego under $GOPATH/src/github.com/beego, just ignore this.
94+
├── GoVersion : go1.16
95+
├── GOOS : linux
96+
├── GOARCH : amd64
97+
├── NumCPU : 12
98+
├── GOPATH : /home/xxx/go
99+
├── GOROOT : /home/aaa/bbb/go
100+
├── Compiler : gc
101+
└── Published : 2020-12-16
102+
103+
```
104+
105+
### Create Project
106+
107+
Run:
108+
109+
```shell
110+
bee new hello
111+
cd hello
112+
go mod tidy
113+
```
114+
115+
And then:
116+
117+
```shell
118+
bee run
119+
```
120+
you can see:
121+
122+
```shell
123+
2021/03/31 23:29:19 SUCCESS ▶ 0004 Built Successfully!
124+
2021/03/31 23:29:19 INFO ▶ 0005 Restarting 'hello'...
125+
2021/03/31 23:29:19 SUCCESS ▶ 0006 './hello' is running...
126+
2021/03/31 23:29:22.016 [I] [parser.go:413] generate router from comments
127+
128+
2021/03/31 23:29:22.016 [I] [server.go:241] http server Running on http://:8080
129+
```

0 commit comments

Comments
 (0)