##// END OF EJS Templates
Doc updates for 0.8.0 final release....
Doc updates for 0.8.0 final release. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/0.8-stable@2204 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2202:babb14dd9406
r2202:babb14dd9406
Show More
INSTALL
62 lines | 1.8 KiB | text/plain | TextLexer
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 == Redmine installation
Redmine - project management software
Jean-Philippe Lang
Doc update for 0.7.1 release....
r1397 Copyright (C) 2006-2008 Jean-Philippe Lang
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 http://www.redmine.org/
== Requirements
Jean-Philippe Lang
Doc updates for 0.8.0 final release....
r2202 * Ruby on Rails 2.1.2
Jean-Philippe Lang
Updated INSTALL doc....
r1610 * A database:
* MySQL (tested with MySQL 5)
* PostgreSQL (tested with PostgreSQL 8.1)
* SQLite (tested with SQLite 3)
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Optional:
* SVN binaries >= 1.3 (needed for repository browsing, must be available in PATH)
* RMagick (gantt export to png)
== Installation
1. Uncompress the program archive
2. Create an empty database: "redmine" for example
3. Configure database parameters in config/database.yml
for "production" environment (default database is MySQL)
4. Create the database structure. Under the application main directory:
rake db:migrate RAILS_ENV="production"
It will create tables and an administrator account.
Jean-Philippe Lang
Doc update for 0.7.2 release....
r1532 5. Setting up permissions
The user who runs Redmine must have write permission on the following
subdirectories: files, log, tmp (create the last one if not present).
Assuming you run Redmine with a user named redmine:
mkdir tmp
sudo chown -R redmine:redmine files log tmp
sudo chmod -R 755 files log tmp
6. Test the installation by running WEBrick web server:
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 ruby script/server -e production
Once WEBrick has started, point your browser to http://localhost:3000/
You should now see the application welcome page
Jean-Philippe Lang
Doc update for 0.7.2 release....
r1532 7. Use default administrator account to log in:
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 login: admin
password: admin
Jean-Philippe Lang
Doc update for 0.7.2 release....
r1532 Go to "Administration" to load the default configuration data (roles,
Jean-Philippe Lang
Default configuration data can now be loaded from the administration screen....
r1027 trackers, statuses, workflow) and adjust application settings
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 == Email delivery Configuration
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 Copy config/email.yml.example to config/email.yml and edit this file
to adjust your SMTP settings.
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 Don't forget to restart the application after any change to this file.
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611
Please do not enter your SMTP settings in environment.rb.