##// END OF EJS Templates
Updating documentation for the 0.9.5 release....
Updating documentation for the 0.9.5 release. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3814 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r3700:c7d075fb6835
r3700:c7d075fb6835
Show More
INSTALL
71 lines | 2.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 == Redmine installation
Redmine - project management software
Jean-Philippe Lang
Updated doc....
r3179 Copyright (C) 2006-2010 Jean-Philippe Lang
Jean-Philippe Lang
Slight changes for 0.6.0 release....
r870 http://www.redmine.org/
== Requirements
Jean-Philippe Lang
Adds requirement for ruby version and tells that Rails is included in downloadable releases (#4836)....
r3309 * Ruby 1.8.6 or 1.8.7
* Ruby on Rails 2.3.5 (official downloadable Redmine releases are packaged with
the appropriate Rails version)
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)
Jean-Philippe Lang
Fixes INSTALL and UPGRADING steps order (#4848)....
r3341 4. Generate a session store secret
Jean-Philippe Lang
Adds rake config/initializers/session_store.rb to the install doc....
r2433 Redmine stores session data in cookies by default, which requires
a secret to be generated. Run:
Eric Davis
Updating documentation for the 0.9.5 release....
r3700 rake generate_session_store
Jean-Philippe Lang
Fixes INSTALL and UPGRADING steps order (#4848)....
r3341
5. 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
Adds rake config/initializers/session_store.rb to the install doc....
r2433 6. Setting up permissions
Jean-Philippe Lang
Doc update for 0.7.2 release....
r1532 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
Jean-Philippe Lang
Adds rake config/initializers/session_store.rb to the install doc....
r2433 7. 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
Adds rake config/initializers/session_store.rb to the install doc....
r2433 8. 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.