1
|
== Redmine installation
|
2
|
|
3
|
Redmine - project management software
|
4
|
Copyright (C) 2006-2007 Jean-Philippe Lang
|
5
|
http://www.redmine.org/
|
6
|
|
7
|
|
8
|
== Requirements
|
9
|
|
10
|
* Ruby on Rails 2.0.2
|
11
|
* A database (see compatibility below)
|
12
|
|
13
|
Optional:
|
14
|
* SVN binaries >= 1.3 (needed for repository browsing, must be available in PATH)
|
15
|
* RMagick (gantt export to png)
|
16
|
|
17
|
Supported databases:
|
18
|
* MySQL (tested with MySQL 5)
|
19
|
* PostgreSQL (tested with PostgreSQL 8.1)
|
20
|
* SQLite (tested with SQLite 3)
|
21
|
|
22
|
|
23
|
== Installation
|
24
|
|
25
|
1. Uncompress the program archive
|
26
|
|
27
|
2. Create an empty database: "redmine" for example
|
28
|
|
29
|
3. Configure database parameters in config/database.yml
|
30
|
for "production" environment (default database is MySQL)
|
31
|
|
32
|
4. Create the database structure. Under the application main directory:
|
33
|
rake db:migrate RAILS_ENV="production"
|
34
|
It will create tables and an administrator account.
|
35
|
|
36
|
5. Test the installation by running WEBrick web server:
|
37
|
ruby script/server -e production
|
38
|
|
39
|
Once WEBrick has started, point your browser to http://localhost:3000/
|
40
|
You should now see the application welcome page
|
41
|
|
42
|
6. Use default administrator account to log in:
|
43
|
login: admin
|
44
|
password: admin
|
45
|
|
46
|
7. Go to "Administration" to load the default configuration data (roles,
|
47
|
trackers, statuses, workflow) and adjust application settings
|
48
|
|
49
|
|
50
|
== SMTP server Configuration
|
51
|
|
52
|
In config/environment.rb, you can set parameters for your SMTP server:
|
53
|
config.action_mailer.smtp_settings: SMTP server configuration
|
54
|
config.action_mailer.perform_deliveries: set to false to disable mail delivering
|
55
|
|
56
|
Don't forget to restart the application after any change to this file.
|