Project

General

Profile

Installation instructions » History » Version 3

Ohad Levy, 09/08/2009 06:18 AM

1 1 Ohad Levy
h2. Requirements
2
3
before you start, make sure you have:
4
5
* Puppet >= 0.24-4
6
* rake >= 0.84 
7
* git
8
9
The installation has been successfully tested on RHE5 and Ubuntu 8.04 -  9.04,  for older operating systems you might need additional packages (e.g. sqlite)
10
11
h2. Download
12
13
to get latest "stable" version do:
14
15 2 Ohad Levy
<pre><code>git clone git://github.com/ohadlevy/torque.git torque
16
cd torque
17 1 Ohad Levy
git submodule init
18
git submodule update
19
</code></pre>
20
21 3 Ohad Levy
* if you are behind a proxy or firewall and dont have access to github using the git protocol, use http protocol instead (e.g.)
22
 git clone http://github.com/ohadlevy/torque.git torque
23
24 1 Ohad Levy
h2. Initial setup
25
26
if you want to share the database with Puppets (storeconfig) edit config/database.yml and configure the *production* database to point to the same database, if not, you can use any other database rails support(MySQL, Sqlite etc)
27
28
to initialize the database schema type:
29
<code>RAILS_ENV=production rake db:migrate</code>
30
to start the built in web server:
31
<code>./script/server -e production</code>
32
33
If you would like to keep the server running, I would recommend to setup passenger, an puppet manifest example could be found [[Passenger setup example|here]].
34
35
Great - everything works! now learn what you can do by reading the [[FAQ]]
36
37
h2. Updates
38
39
If you would like to update to the latest version of the torque, execute the following on the torque directory
40
<pre><code>git pull
41
RAILS_ENV=production rake db:migrate
42
</code></pre>
43
44
and restart your web service.