diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-01-19 14:45:39 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-01-19 14:45:39 +0000 |
commit | 513419debbbdfc754ae1efeb63691969910d3e4e (patch) | |
tree | a5cb18ee1ad976aec611725ee0f82d087be411fd /doc | |
parent | 0450547b663bb6868ea96117eb0b5507cb68357f (diff) | |
download | redmine-513419debbbdfc754ae1efeb63691969910d3e4e.tar.gz redmine-513419debbbdfc754ae1efeb63691969910d3e4e.zip |
database.yml should be configured first.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11203 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc')
-rw-r--r-- | doc/INSTALL | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/INSTALL b/doc/INSTALL index fc2d6a477..06be1c73e 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -24,7 +24,15 @@ Optional: 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.8) + + If you're running Redmine with MySQL and ruby1.9, replace the adapter name + with `mysql2` + +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 @@ -35,14 +43,6 @@ Optional: 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 |