public
Fork of rails/rails
Description: Ruby on Rails - forked for implementing I18n patch
Homepage: http://rubyonrails.org
Clone URL: git://github.com/svenfuchs/rails.git
Cleaned it up

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@50 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Mon Dec 06 10:19:56 -0800 2004
commit  ed14042feac6ff84670958fc3e2017aaacac5856
tree    66b9f08832b68117f9b126a948b5bf5c08eb07fc
parent  456076a306441dfb7a655e0b9e1944d06daeff58
...
27
28
29
30
 
31
32
33
34
35
36
 
37
38
39
...
53
54
55
56
57
 
 
 
58
59
60
61
62
63
 
 
 
64
65
 
66
67
68
69
70
71
 
 
 
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
...
27
28
29
 
30
31
 
 
 
 
 
32
33
34
35
...
49
50
51
 
 
52
53
54
55
 
 
 
 
 
56
57
58
59
 
60
61
62
63
 
 
 
64
65
66
67
68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
70
71
0
@@ -27,13 +27,9 @@
0
 </head>
0
 <body>
0
 
0
-<h1>Congratulations, you're on Rails!</h1>
0
+<h1>Congratulations, you've put Ruby on Rails!</h1>
0
 
0
-<p>
0
- <i>You've succesfully configured your web server to point at this Rails application.</i>
0
-</p>
0
-
0
-<p>Before you move on, verify that the following conditions have been met:</p>
0
+<p><b>Before you move on</b>, verify that the following conditions have been met:</p>
0
 
0
 <ol>
0
   <li>The log directory and the empty log files must be writable to the web server (<code>chmod -R 777 log</code>).
0
@@ -53,43 +49,22 @@
0
 <p>Take the following steps to get started:</p>
0
 
0
 <ol>
0
- <li>Create empty production and test databases for your application.<br/>
0
- <small>Warning: Don't point your test database at your production database, it'll destroy the latter on test runs!</small>
0
+ <li>Create empty development and test databases for your application.<br/>
0
+ <small>Recommendation: Use *_development and *_test names, such as basecamp_development and basecamp_test</small><br/>
0
+ <small>Warning: Don't point your test database at your development database, it'll destroy the latter on test runs!</small>
0
   <li>Edit config/database.yml with your database settings.
0
- <li>Create a new controller using the <code>script/new_controller</code> generator <br/>
0
- <small>Help: Run with no arguments for documentation</small>
0
- <li>Create a new model using the <code>script/new_model</code> generator <br/>
0
- <small>Help: Run with no arguments for documentation</small>
0
- <li>See all the tests run and fail by running <code>rake</code>.
0
+ <li>Create controllers and models using the generators in <code>script/new_*</code> <br/>
0
+ <small>Help: Run a generator with no arguments for documentation</small>
0
+ <li>See all the tests run by running <code>rake</code>.
0
   <li>Develop your Rails application!
0
- <li>Setup FastCGI or mod_ruby to get production-level performance
0
+ <li>Setup Apache with <a href="http://www.fastcgi.com">FastCGI</a> (and <a href="http://raa.ruby-lang.org/list.rhtml?name=fcgi">Ruby bindings</a>), if you need better performance
0
 </ol>
0
 
0
 <p>
0
- Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/> Then try the friendly Rails
0
- community on IRC (<a href="http://www.rubyonrails.org/show/IRC">howto IRC</a>). It's on FreeNode, in channel
0
- <a href="irc://irc.freenode.net/#rubyonrails">#rubyonrails</a>.
0
+ Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/>
0
+ Then try the friendly Rails community <a href="http://www.rubyonrails.org">on the web</a> or <a href="http://www.rubyonrails.org/show/IRC">on IRC</a>
0
+ (<a href="irc://irc.freenode.net/#rubyonrails">FreeNode#rubyonrails</a>).
0
 </p>
0
 
0
-<div style="float: left; margin-right: 20px">
0
- <h2>Rails Online</h2>
0
-
0
- <ul>
0
- <li><a href="http://www.rubyonrails.org">Ruby on Rails</a></li>
0
- <li><a href="http://activerecord.rubyonrails.org">Active Record</a></li>
0
- <li><a href="http://actionpack.rubyonrails.org">Action Pack</a></li>
0
- </ul>
0
-</div>
0
-
0
-<div style="float: left">
0
- <h2>Beyond CGI</h2>
0
-
0
- <ul>
0
- <li><a href="http://www.fastcgi.com">FastCGI</a></li>
0
- <li><a href="http://raa.ruby-lang.org/list.rhtml?name=fcgi">FastCGI bindings for Ruby</a></li>
0
- <li><a href="http://modruby.net/en/">mod_ruby</a></li>
0
- </ul>
0
-</div>
0
-
0
 </body>
0
 </html>
0
\ No newline at end of file

Comments

    No one has commented yet.