Changeset 50
- Timestamp:
- 12/06/04 18:19:56 (4 years ago)
- Files:
-
- trunk/railties/doc/index.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/doc/index.html
r37 r50 28 28 <body> 29 29 30 <h1>Congratulations, you' reon Rails!</h1>30 <h1>Congratulations, you've put Ruby on Rails!</h1> 31 31 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> 37 33 38 34 <ol> … … 54 50 55 51 <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> 58 55 <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>. 64 59 <li>Develop your Rails application! 65 <li>Setup FastCGI or mod_ruby to get production-levelperformance60 <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 66 61 </ol> 67 62 68 63 <p> 69 Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/> Then try the friendly Rails70 community on IRC (<a href="http://www.rubyonrails.org/show/IRC">howto IRC</a>). It's on FreeNode, in channel71 <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>). 72 67 </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>93 68 94 69 </body>