18 |
18 |
* SQLServer (tested with SQLServer 2012)
|
19 |
19 |
|
20 |
20 |
Optional:
|
21 |
|
* SCM binaries (e.g. svn, git...), for repository browsing (must be available in PATH)
|
|
21 |
* SCM binaries (e.g. svn, git...), for repository browsing (must be
|
|
22 |
available in PATH)
|
22 |
23 |
* ImageMagick (to enable Gantt export to png images)
|
23 |
24 |
|
24 |
25 |
== Installation
|
... | ... | |
33 |
34 |
4. Install the required gems by running:
|
34 |
35 |
bundle install --without development test
|
35 |
36 |
|
36 |
|
If ImageMagick is not installed on your system, you should skip the installation
|
37 |
|
of the rmagick gem using:
|
|
37 |
If ImageMagick is not installed on your system, you should skip the
|
|
38 |
installation of the rmagick gem using:
|
38 |
39 |
bundle install --without development test rmagick
|
39 |
40 |
|
40 |
|
Only the gems that are needed by the adapters you've specified in your database
|
41 |
|
configuration file are actually installed (eg. if your config/database.yml
|
42 |
|
uses the 'mysql2' adapter, then only the mysql2 gem will be installed). Don't
|
43 |
|
forget to re-run `bundle install` when you change config/database.yml for using
|
44 |
|
other database adapters.
|
|
41 |
Only the gems that are needed by the adapters you've specified in your
|
|
42 |
database configuration file are actually installed (eg. if your
|
|
43 |
config/database.yml uses the 'mysql2' adapter, then only the mysql2 gem
|
|
44 |
will be installed). Don't forget to re-run `bundle install` when you
|
|
45 |
change config/database.yml for using other database adapters.
|
45 |
46 |
|
46 |
|
If you need to load some gems that are not required by Redmine core (eg. fcgi),
|
47 |
|
you can create a file named Gemfile.local at the root of your redmine directory.
|
|
47 |
If you need to load some gems that are not required by Redmine core
|
|
48 |
(eg. fcgi), you can create a file named Gemfile.local at the root of
|
|
49 |
your redmine directory.
|
48 |
50 |
It will be loaded automatically when running `bundle install`.
|
49 |
51 |
|
50 |
52 |
5. Generate a session store secret
|