Mercurial > hg > soundsoftware-site
diff doc/INSTALL @ 1295:622f24f53b42 redmine-2.3
Update to Redmine SVN revision 11972 on 2.3-stable branch
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:02:21 +0100 |
parents | 433d4f72a19b |
children | e248c7af89ec |
line wrap: on
line diff
--- a/doc/INSTALL Fri Jun 14 09:01:12 2013 +0100 +++ b/doc/INSTALL Fri Jun 14 09:02:21 2013 +0100 @@ -1,20 +1,21 @@ == Redmine installation Redmine - project management software -Copyright (C) 2006-2012 Jean-Philippe Lang +Copyright (C) 2006-2013 Jean-Philippe Lang http://www.redmine.org/ == Requirements -* Ruby 1.8.7, 1.9.2 or 1.9.3 +* Ruby 1.8.7, 1.9.2, 1.9.3 or 2.0.0 * RubyGems * Bundler >= 1.0.21 * A database: * MySQL (tested with MySQL 5.1) * PostgreSQL (tested with PostgreSQL 9.1) - * SQLite3 (tested with SQLite 3.6) + * SQLite3 (tested with SQLite 3.7) + * SQLServer (tested with SQLServer 2012) Optional: * SCM binaries (e.g. svn, git...), for repository browsing (must be available in PATH) @@ -24,25 +25,31 @@ 1. Uncompress the program archive -2. Install the required gems by running: +2. Create an empty utf8 encoded database: "redmine" for example + +3. Configure the database parameters in config/database.yml + for the "production" environment (default database is MySQL and ruby1.9) + + If you're running Redmine with MySQL and ruby1.8, replace the adapter name + with `mysql` + +4. Install the required gems by running: bundle install --without development test If ImageMagick is not installed on your system, you should skip the installation of the rmagick gem using: bundle install --without development test rmagick + Only the gems that are needed by the adapters you've specified in your database + configuration file are actually installed (eg. if your config/database.yml + uses the 'mysql2' adapter, then only the mysql2 gem will be installed). Don't + forget to re-run `bundle install` when you change config/database.yml for using + other database adapters. + If you need to load some gems that are not required by Redmine core (eg. fcgi), you can create a file named Gemfile.local at the root of your redmine directory. It will be loaded automatically when running `bundle install`. -3. Create an empty utf8 encoded database: "redmine" for example - -4. Configure the database parameters in config/database.yml - for the "production" environment (default database is MySQL and ruby1.8) - - If you're running Redmine with MySQL and ruby1.9, replace the adapter name - with `mysql2` - 5. Generate a session store secret Redmine stores session data in cookies by default, which requires