public
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/halorgium/mephisto.git
commit  e668bea7af08a86c26f0b856b8f52555a37f2154
tree    1c56460891451ec6621ad793059a6dbcb9b1003d
parent  281dd17cb2b7a970260b27bbdc5e7d24e7220633
mephisto / public / install.html
100644 87 lines (72 sloc) 3.662 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <title>Installing Mephisto</title>
    <link rel="stylesheet" href="stylesheets/mephisto/mephisto.css" type="text/css" charset="utf-8" />
  </head>
  <body>
  
    <!-- div.header -->
    <div id="header">
 
 
      <h1><a href="http://mephistoblog.com">Mephisto</a></h1>
 
      <!-- div.nav -->
      <div id="nav">
          <ul>
            <li><a href="/">Installing</a></li>
          </ul>
      </div>
      <!-- /div.nav -->
      
    </div>
    <!-- /div.header -->
    
    <div id="container">
      
      <!-- div.content -->
      <div id="content">
        
        <!-- div.left -->
        <div id="main">
          
          <div id="main-content" style="padding: 20px">
            <h2 style="margin: 10px 0">Installing Mephisto</h2>
            <p>Follow these steps to get Mephisto up and running like a pro!</p>
            <br />
            <p><strong>Note:</strong> We are targeting the Rails 2.0 release series for Mephisto 1.0. Therefore, if you are using gem rails (most hosting environments do),
               you will need to freeze edge rails: <code>rake rails:freeze:edge</code></p>
            <br />
 
            <p>You can visit the <a href="http://mephistoblog.com/docs/setup">Mephisto install documentation</a> on the site to get the most recent content,
              however for the impatient, here's the quick setup guide:</p>
            <br />
            <ol style="padding-left:35px">
              <li>Create a database named mephisto (or one of your choosing).</li>
                <li>Copy config/database.example.yml to config/database.yml</li>
                <li>Edit database.yml and set your database credentials.</li>
                <li>Upload the entire mephisto directory to your webserver.</li>
                <li>Make sure you upload the tzinfo gem (see above) with the directory, or that your host has it preinstalled.</li>
                <li>Run rake db:bootstrap from a terminal of some sorts (use rake db:bootstrap <span class="caps">RAILS</span>_ENV=production to be sure you’ve bootstrapped the production database.)</li>
                <li>Login to your administration at http://domain.com/admin with the username: admin and password: test</li>
              </ol>
 
            
            <br />
            <h3>For further help, to join the community and get involved, visit the following:</h3>
            <br />
            <ul style="padding-left: 35px">
              <li><a href="http://mephistoblog.com">The Official Mephisto Site</a></li>
              <li><a href="http://mephisto.stikipad.com">The Mephisto Community Wiki</a></li>
              <li><a href="http://groups.google.com/group/MephistoBlog">The Mephisto Google Group</a></li>
            </ul>
          </div>
          <div id="shadow"></div>
        </div>
        <!-- /div.left -->
        
        <!-- div.right -->
        <div id="sbar">
          <h3>About Mephisto</h3>
          <p>Mephisto was baked to golden perfection by <a href="http://weblog.techno-weenie.net">Rick Olson</a><em>(Development)</em>
            and <a href="http://encytemedia.com/">Justin Palmer</a><em>(UI/Design)</em> with contributions from a bunch of wicked cool people.
        </div>
        <!-- /div.right -->
      </div>
      <!-- /div.content -->
      
      <!-- begin div.footer -->
      <div id="footer">
 
      </div>
    </div>
  </body>
</html>