Take the 2008 Git User's Survey and help out! [ hide ]

public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
dhh (author)
Mon Dec 06 10:19:56 -0800 2004
commit  ed14042feac6ff84670958fc3e2017aaacac5856
tree    66b9f08832b68117f9b126a948b5bf5c08eb07fc
parent  456076a306441dfb7a655e0b9e1944d06daeff58
rails / railties / doc / index.html
100644 70 lines (59 sloc) 2.59 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
  <title>Rails: Welcome on board</title>
  <style>
    body { background-color: #fff; color: #333; }
 
    body, p, ol, ul, td {
      font-family: verdana, arial, helvetica, sans-serif;
      font-size: 12px;
      line-height: 18px;
    }
 
    li {
      margin-bottom: 7px;
    }
 
    pre {
      background-color: #eee;
      padding: 10px;
      font-size: 11px;
    }
 
    a { color: #000; }
    a:visited { color: #666; }
    a:hover { color: #fff; background-color:#000; }
  </style>
</head>
<body>
 
<h1>Congratulations, you've put Ruby on Rails!</h1>
 
<p><b>Before you move on</b>, verify that the following conditions have been met:</p>
 
<ol>
  <li>The log directory and the empty log files must be writable to the web server (<code>chmod -R 777 log</code>).
  <li>
    The shebang line in the public/dispatch* files must reference your Ruby installation. <br/>
    You might need to change it to <code>#!/usr/bin/env ruby</code> or point directly at the installation.
  </li>
  <li>
    Rails on Apache needs to have the cgi handler and mod_rewrite enabled. <br/>
    Somewhere in your httpd.conf, you should have:<br/>
    <code>AddHandler cgi-script .cgi</code><br/>
    <code>LoadModule rewrite_module libexec/httpd/mod_rewrite.so</code><br/>
    <code>AddModule mod_rewrite.c</code>
  </li>
</ol>
 
<p>Take the following steps to get started:</p>
 
<ol>
  <li>Create empty development and test databases for your application.<br/>
    <small>Recommendation: Use *_development and *_test names, such as basecamp_development and basecamp_test</small><br/>
    <small>Warning: Don't point your test database at your development database, it'll destroy the latter on test runs!</small>
  <li>Edit config/database.yml with your database settings.
  <li>Create controllers and models using the generators in <code>script/new_*</code> <br/>
    <small>Help: Run a generator with no arguments for documentation</small>
  <li>See all the tests run by running <code>rake</code>.
  <li>Develop your Rails application!
  <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
</ol>
 
<p>
  Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/>
  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>
  (<a href="irc://irc.freenode.net/#rubyonrails">FreeNode#rubyonrails</a>).
</p>
 
</body>
</html>