Skip to content

Commit 5ca4548

Browse files
committed
Merge pull request PegasusWang#1 from kxxoling/master
文档结构大幅调整
2 parents edd14ce + 7c199fa commit 5ca4548

File tree

25 files changed

+183
-122
lines changed

25 files changed

+183
-122
lines changed
File renamed without changes.

backend/index.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
===================================
2+
后端技术
3+
===================================
4+
5+
6+
.. toctree::
7+
:glob:
8+
:maxdepth: 2
9+
10+
*
11+
File renamed without changes.
File renamed without changes.

codingguide/index.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
===================================
2+
开发规范
3+
===================================
4+
5+
6+
.. toctree::
7+
:glob:
8+
:maxdepth: 2
9+
10+
*
11+
File renamed without changes.

devtools/index.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
===================================
2+
开发工具
3+
===================================
4+
5+
6+
.. toctree::
7+
:glob:
8+
:maxdepth: 2
9+
10+
*
11+
File renamed without changes.
File renamed without changes.

xshell.rst renamed to devtools/xshell.rst

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Xshell : 极好用的免费SSH客户端
1919

2020
安装好xshell后,打开软件,点击菜单栏“File”中的“new”,将出现下图所示弹窗,填写相应信息。其中Host为邮件中所给的主机ip地址(name栏可以不用修改,但一般为便于在xshell中区分不同的主机,自己一般会修改为“用户名@主机”,也可以用“用户名@42qu”),然后点击“ok”。
2121

22-
.. image:: _image/register.png
22+
.. image:: ../_image/register.png
2323
:alt: 首次登录
2424

2525

@@ -32,11 +32,11 @@ Xshell : 极好用的免费SSH客户端
3232
并确定,最后输入邮件中提供的密码,即可登录到自己的vps中。
3333

3434

35-
#. .. image:: _image/login1.png
35+
#. .. image:: ../_image/login1.png
3636

37-
#. .. image:: _image/login2.png
37+
#. .. image:: ../_image/login2.png
3838

39-
#. .. image:: _image/login3.png
39+
#. .. image:: ../_image/login3.png
4040

4141

4242

@@ -45,17 +45,17 @@ Xshell : 极好用的免费SSH客户端
4545

4646
简单设置一下xshell的字符显示,在下图所示的导航按钮中,勾选“UTF-8”。
4747

48-
.. image:: _image/encoding.png
48+
.. image:: ../_image/encoding.png
4949

5050
顺便可以设置下字体
5151

52-
.. image:: _image/xshell_ft.png
52+
.. image:: ../_image/xshell_ft.png
5353

5454
如果觉得粗体看着碍眼, 那么可以修正下显示设置
5555

56-
#. .. image:: _image/xshell_font_btn.png
56+
#. .. image:: ../_image/xshell_font_btn.png
5757

58-
#. .. image:: _image/xshell_font.png
58+
#. .. image:: ../_image/xshell_font.png
5959

6060

6161

@@ -66,65 +66,65 @@ Xshell : 极好用的免费SSH客户端
6666

6767
执行::
6868

69-
cd ~
69+
cd ~
7070

7171
命令,来到home(家)目录
7272

7373
执行::
74-
74+
7575
ssh-keygen
7676

7777
命令 , 然后按两次回车, 生成密钥
7878

7979
执行::
80-
80+
8181
cd .ssh
8282

8383
进入.ssh目录
8484

8585
执行::
86-
86+
8787
cat id_rsa.pub >> authorized_keys
8888

8989
将把当前目录下
9090

9191
id_rsa.pub中的数据拷贝一份到新建的authorized_keys档案中。
9292

93-
.. image:: _image/makekeys.png
93+
.. image:: ../_image/makekeys.png
9494

9595
点击导航中的“new file transfer”图标,如下图所示。
9696

97-
.. image:: _image/filetransfer.png
97+
.. image:: ../_image/filetransfer.png
9898

9999
弹出窗口中忽视警告,确定后输入密码,在.ssh目录下执行“get id_rsa”命令,id_rsa将被保存到下图红线所示的本地目录中。
100100

101-
.. image:: _image/getkeys.png
101+
.. image:: ../_image/getkeys.png
102102

103103
在xshell菜单栏中依次点击“File”->“open”,选中你的session用户,并点击“Properties”,如下图所示。
104104

105-
.. image:: _image/reset1.png
105+
.. image:: ../_image/reset1.png
106106

107107
做下图所示修改,点击“Browse”按钮。
108108

109-
.. image:: _image/reset2.png
109+
.. image:: ../_image/reset2.png
110110

111111
点击import按钮,选择id_rsa,之后一路确定,再次登录是就可以不用再输入用户名和密码了。
112112

113-
.. image:: _image/reset3.png
113+
.. image:: ../_image/reset3.png
114114

115115

116116
克隆代码
117117
--------------------------------------------------
118118

119119
重新登录后,为了方便学习各种命令; 我们可以首先克隆一份 42qu.com 的源代码, 执行::
120120

121-
hg clone https://bitbucket.org/zuroc/zpage
121+
hg clone https://bitbucket.org/zuroc/zpage
122122

123123
等上十分钟 , 会在当前目录下生成新目录zpage,其中包括了项目的所有代码,如图所示。
124124

125-
.. image:: _image/clone.png
125+
.. image:: ../_image/clone.png
126+
126127

127-
128128
安装 virtualenv
129129
--------------------------------------------------
130130

@@ -139,7 +139,7 @@ id_rsa.pub中的数据拷贝一份到新建的authorized_keys档案中。
139139

140140
再运行 ::
141141

142-
source ~/.bash_profile
142+
source ~/.bash_profile
143143

144144
再运行 ::
145145

0 commit comments

Comments
 (0)