comparison doc/UPGRADING @ 1526:404aa68d4227

Merge from live branch
author Chris Cannam
date Thu, 11 Sep 2014 12:46:20 +0100
parents e248c7af89ec
children
comparison
equal deleted inserted replaced
1493:a5f2bdf3b486 1526:404aa68d4227
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-2014 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: