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

Changeset 9132

Show
Ignore:
Timestamp:
03/29/08 18:37:14 (5 months ago)
Author:
david
Message:

Update welcome screen with revised instructions and removal of dead links

Files:

Legend:

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

    r7604 r9132  
    220220              <li><a href="http://www.rubyonrails.org/">Ruby on Rails</a></li> 
    221221              <li><a href="http://weblog.rubyonrails.org/">Official weblog</a></li> 
    222               <li><a href="http://lists.rubyonrails.org/">Mailing lists</a></li> 
    223               <li><a href="http://wiki.rubyonrails.org/rails/pages/IRC">IRC channel</a></li> 
    224222              <li><a href="http://wiki.rubyonrails.org/">Wiki</a></li> 
    225               <li><a href="http://dev.rubyonrails.org/">Bug tracker</a></li> 
    226223            </ul> 
    227224          </li> 
     
    253250          <h2>Here&rsquo;s how to get rolling:</h2> 
    254251           
    255           <ol> 
    256             <li> 
    257               <h2>Create your databases and edit <tt>config/database.yml</tt></h2> 
    258               <p>Rails needs to know your login and password.</p> 
    259             </li> 
    260            
     252          <ol>           
    261253            <li> 
    262254              <h2>Use <tt>script/generate</tt> to create your models and controllers</h2> 
     
    268260              <p>Routes are set up in config/routes.rb.</p> 
    269261            </li> 
     262 
     263            <li> 
     264              <h2>Create your database</h2> 
     265              <p>Run <tt>rake db:migrate</tt> to create your database. If you're not using SQLite (the default), edit <tt>config/database.yml</tt> with your username and password.</p> 
     266            </li> 
    270267          </ol> 
    271268        </div>