Showing 1 changed files with 19 additions and 20 deletions
+19 -20
README.md
... ...
@@ -1,6 +1,6 @@
1 1
 # GitPrep
2 2
 
3
-Github clone. you can install portable github system into unix/linux.
3
+Github clone. You can install portable github system into unix/linux.
4 4
 
5 5
 <img src="http://cdn-ak.f.st-hatena.com/images/fotolife/p/perlcodesample/20130421/20130421180903_original.png" width="850">
6 6
 
... ...
@@ -10,7 +10,7 @@ Github clone. you can install portable github system into unix/linux.
10 10
 * Portable. you can install it into your Unix/Linux server.
11 11
 * Perl 5.8.7+ only needed
12 12
 * CGI support
13
-* Having built-in web werver, Reverse proxy support
13
+* Having built-in web server, Reverse proxy support
14 14
 
15 15
 # Installation into Shared Server
16 16
 
... ...
@@ -21,11 +21,11 @@ Shared Server must support **Linux/Unix**, **Apache**, **SuExec**,
21 21
 because you don't need to think about permission.)
22 22
 
23 23
 Many shared server support these,
24
-so you will find sutable server easily.
24
+so you will find suitable server easily.
25 25
 
26 26
 ## Download
27 27
 
28
-You donwload gitprep.
28
+You download gitprep.
29 29
 
30 30
 https://github.com/yuki-kimoto/gitprep/archive/latest.zip
31 31
 
... ...
@@ -63,7 +63,7 @@ please set this CGI script permission to 755)
63 63
 
64 64
     http://(Your host name)/gitprep/setup/setup.cgi.
65 65
 
66
-Click Setup button once and wait abount 5 minutes.
66
+Click Setup button once and wait about 5 minutes.
67 67
 
68 68
 ## Go to application
69 69
 
... ...
@@ -72,9 +72,9 @@ If you see result, click "Go to Application".
72 72
 ## You see Internal Server Error
73 73
 
74 74
 If you see internal server error, you see gitprep/log/production.log.
75
-You know what error is happned.
75
+You know what error is happened.
76 76
 
77
-# Instllation into own Unix/Linux Server
77
+# Installation into own Unix/Linux Server
78 78
 
79 79
 GitPrep have own web server,
80 80
 so you can execute application very easily.
... ...
@@ -88,7 +88,7 @@ gcc4 and make program are needed.)
88 88
 
89 89
 ## Create gitprep user
90 90
 
91
-At first create **gitprep** user. This is not nesessary, but recommended.
91
+At first create **gitprep** user. This is not necessary, but recommended.
92 92
 
93 93
     useradd gitprep
94 94
     su - gitprep
... ...
@@ -96,7 +96,7 @@ At first create **gitprep** user. This is not nesessary, but recommended.
96 96
 
97 97
 ## Download
98 98
 
99
-Download tar.gz archive and exapand it and change directory. 
99
+Download tar.gz archive and expand it and change directory.
100 100
 
101 101
     curl -kL https://github.com/yuki-kimoto/gitprep/archive/latest.tar.gz > gitprep-latest.tar.gz
102 102
     tar xf gitprep-latest.tar.gz
... ...
@@ -105,7 +105,7 @@ Download tar.gz archive and exapand it and change directory.
105 105
 
106 106
 ## Setup
107 107
 
108
-You execute the following command. Needed moudles is installed.
108
+You execute the following command. Needed modules is installed.
109 109
 
110 110
     ./setup.sh
111 111
 
... ...
@@ -131,9 +131,9 @@ Application is run in background, port is **10020** by default.
131 131
     ./gitprep
132 132
 
133 133
 You can access the following URL.
134
-      
134
+
135 135
     http://localhost:10020
136
-    
136
+
137 137
 If you change port, edit gitprep.conf.
138 138
 If you can't access this port, you might change firewall setting.
139 139
 
... ...
@@ -155,25 +155,25 @@ Stop application
155 155
 
156 156
     sudo -u gitprep /home/gitprep/gitprep/gitprep --stop
157 157
 
158
-If you want to start application when os start,
158
+If you want to start application when OS start,
159 159
 add the start application command to **rc.local**(Linux).
160 160
 
161 161
 If you want to make easy to manage gitprep,
162 162
 Let's create run script.
163
-    
163
+
164 164
     mkdir -p /webapp
165 165
     echo '#!/bin/sh' > /webapp/gitprep
166 166
     echo 'sudo -u gitprep /home/gitprep/gitprep/gitprep $*' >> /webapp/gitprep
167 167
     chmod 755 /webapp/gitprep
168 168
 
169 169
 You can start and stop application the following command.
170
-    
170
+
171 171
     # Start or Restart
172 172
     /webapp/gitprep
173
-    
173
+
174 174
     # Stop
175 175
     /webapp/gitprep --stop
176
-    
176
+
177 177
 ## Developer
178 178
 
179 179
 If you are developer, you can start application development mode
... ...
@@ -181,15 +181,14 @@ If you are developer, you can start application development mode
181 181
     ./morbo
182 182
 
183 183
 You can access the following URL.
184
-      
184
+
185 185
     http://localhost:3000
186 186
 
187 187
 If you have git, it is easy to install from git.
188 188
 
189 189
     git clone git://github.com/yuki-kimoto/gitprep.git
190 190
 
191
-It is useful to write configuration in ***gitprep.my.conf***
192
-, not gitprep.conf.
191
+It is useful to write configuration in ***gitprep.my.conf***, not gitprep.conf.
193 192
 
194 193
 ## Web Site
195 194