Difference between revisions of "HowTo Setup Redmine"

From WebOS Internals
Jump to navigation Jump to search
(New page: For Ubuntu Server: 1. sudo apt-get install thin redmine 2. (Assuming sqlite is already installed and is the preferred DB), select sqlite3 as database 3. Create email.yml in /path/to/...)
 
m (Donchaknow)
 
(7 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
1.  sudo apt-get install thin redmine
 
1.  sudo apt-get install thin redmine
  
2.  (Assuming sqlite is already installed and is the preferred DB), select sqlite3 as database
+
2.  (Assuming sqlite is already installed and is the preferred DB), select sqlite3 as database.  The db will be automagically setup if the sqlite is already installed
  
 
3.  Create email.yml in /path/to/redmine/config/
 
3.  Create email.yml in /path/to/redmine/config/
Line 11: Line 11:
 
4.  Edit environment.rb and change email delivery to true.
 
4.  Edit environment.rb and change email delivery to true.
  
5.  Run thin start -e production from /path/to/redmine
+
5.  Run thin start -e production -c /path/to/redmine [ -p port -a host ]
  
6.  Profit!
+
6.  thin runs on port 3000 (probably we should use port 3050 as every RAILS app uses 3000)
 +
 
 +
7. configure nginx for a proxy from port 80 to port 3000 (Port 3050?)
 +
 
 +
8. run import of trac db's
 +
 
 +
9. Profit!
 +
 
 +
Hi

Latest revision as of 17:36, 16 September 2010

For Ubuntu Server:

1. sudo apt-get install thin redmine

2. (Assuming sqlite is already installed and is the preferred DB), select sqlite3 as database. The db will be automagically setup if the sqlite is already installed

3. Create email.yml in /path/to/redmine/config/

Examples: http://www.redmine.org/wiki/redmine/EmailConfiguration

4. Edit environment.rb and change email delivery to true.

5. Run thin start -e production -c /path/to/redmine [ -p port -a host ]

6. thin runs on port 3000 (probably we should use port 3050 as every RAILS app uses 3000)

7. configure nginx for a proxy from port 80 to port 3000 (Port 3050?)

8. run import of trac db's

9. Profit!

Hi