Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 50

Show
Ignore:
Timestamp:
12/06/04 18:19:56 (4 years ago)
Author:
david
Message:

Cleaned it up

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/railties/doc/index.html

    r37 r50  
    2828<body> 
    2929 
    30 <h1>Congratulations, you're on Rails!</h1> 
     30<h1>Congratulations, you've put Ruby on Rails!</h1> 
    3131 
    32 <p> 
    33   <i>You've succesfully configured your web server to point at this Rails application.</i> 
    34 </p> 
    35  
    36 <p>Before you move on, verify that the following conditions have been met:</p> 
     32<p><b>Before you move on</b>, verify that the following conditions have been met:</p> 
    3733 
    3834<ol> 
     
    5450 
    5551<ol> 
    56   <li>Create empty production and test databases for your application.<br/> 
    57       <small>Warning: Don't point your test database at your production database, it'll destroy the latter on test runs!</small> 
     52  <li>Create empty development and test databases for your application.<br/> 
     53    <small>Recommendation: Use *_development and *_test names, such as basecamp_development and basecamp_test</small><br/> 
     54    <small>Warning: Don't point your test database at your development database, it'll destroy the latter on test runs!</small> 
    5855  <li>Edit config/database.yml with your database settings. 
    59   <li>Create a new controller using the <code>script/new_controller</code> generator <br/> 
    60       <small>Help: Run with no arguments for documentation</small> 
    61   <li>Create a new model using the <code>script/new_model</code> generator <br/> 
    62       <small>Help: Run with no arguments for documentation</small> 
    63   <li>See all the tests run and fail by running <code>rake</code>. 
     56  <li>Create controllers and models using the generators in <code>script/new_*</code> <br/> 
     57    <small>Help: Run a generator with no arguments for documentation</small> 
     58  <li>See all the tests run by running <code>rake</code>. 
    6459  <li>Develop your Rails application! 
    65   <li>Setup FastCGI or mod_ruby to get production-level performance 
     60  <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 
    6661</ol> 
    6762 
    6863<p> 
    69   Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/> Then try the friendly Rails  
    70   community on IRC  (<a href="http://www.rubyonrails.org/show/IRC">howto IRC</a>). It's on FreeNode, in channel  
    71   <a href="irc://irc.freenode.net/#rubyonrails">#rubyonrails</a>.  
     64  Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/> 
     65  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> 
     66  (<a href="irc://irc.freenode.net/#rubyonrails">FreeNode#rubyonrails</a>). 
    7267</p> 
    73  
    74 <div style="float: left; margin-right: 20px"> 
    75   <h2>Rails Online</h2> 
    76  
    77   <ul> 
    78     <li><a href="http://www.rubyonrails.org">Ruby on Rails</a></li> 
    79     <li><a href="http://activerecord.rubyonrails.org">Active Record</a></li> 
    80     <li><a href="http://actionpack.rubyonrails.org">Action Pack</a></li> 
    81   </ul> 
    82 </div> 
    83  
    84 <div style="float: left"> 
    85   <h2>Beyond CGI</h2> 
    86  
    87   <ul> 
    88     <li><a href="http://www.fastcgi.com">FastCGI</a></li> 
    89     <li><a href="http://raa.ruby-lang.org/list.rhtml?name=fcgi">FastCGI bindings for Ruby</a></li> 
    90     <li><a href="http://modruby.net/en/">mod_ruby</a></li> 
    91   </ul> 
    92 </div> 
    9368 
    9469</body>