comparison doc/UPGRADING @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children e248c7af89ec
comparison
equal deleted inserted replaced
1297:0a574315af3e 1298:4f746d8966dd
1 == Redmine upgrade 1 == Redmine upgrade
2 2
3 Redmine - project management software 3 Redmine - project management software
4 Copyright (C) 2006-2012 Jean-Philippe Lang 4 Copyright (C) 2006-2013 Jean-Philippe Lang
5 http://www.redmine.org/ 5 http://www.redmine.org/
6 6
7 7
8 == Upgrading 8 == Upgrading
9 9
29 bundle install --without development test 29 bundle install --without development test
30 30
31 If ImageMagick is not installed on your system, you should skip the installation 31 If ImageMagick is not installed on your system, you should skip the installation
32 of the rmagick gem using: 32 of the rmagick gem using:
33 bundle install --without development test rmagick 33 bundle install --without development test rmagick
34
35 Only the gems that are needed by the adapters you've specified in your database
36 configuration file are actually installed (eg. if your config/database.yml
37 uses the 'mysql2' adapter, then only the mysql2 gem will be installed). Don't
38 forget to re-run `bundle install` when you change config/database.yml for using
39 other database adapters.
40
41 If you need to load some gems that are not required by Redmine core (eg. fcgi),
42 you can create a file named Gemfile.local at the root of your redmine directory.
43 It will be loaded automatically when running `bundle install`.
34 44
35 6. Generate a session store secret 45 6. Generate a session store secret
36 46
37 Redmine stores session data in cookies by default, which requires 47 Redmine stores session data in cookies by default, which requires
38 a secret to be generated. Under the new application directory run: 48 a secret to be generated. Under the new application directory run: