diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-02 14:56:10 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-02 14:56:10 +0000 |
commit | 18001e5a5b14cae3a3852c1f9d3da9c014fe9fd3 (patch) | |
tree | 82c3d07d1f983c701e079e725563c0dfb1d80aa9 /doc/INSTALL | |
parent | 32f6cb7c13cb34623194fe5ce314a36e7329686e (diff) | |
download | redmine-18001e5a5b14cae3a3852c1f9d3da9c014fe9fd3.tar.gz redmine-18001e5a5b14cae3a3852c1f9d3da9c014fe9fd3.zip |
various documentation updates
git-svn-id: http://redmine.rubyforge.org/svn/trunk@141 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'doc/INSTALL')
-rw-r--r-- | doc/INSTALL | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/doc/INSTALL b/doc/INSTALL index 9e29b6ddc..a7736749e 100644 --- a/doc/INSTALL +++ b/doc/INSTALL @@ -1,20 +1,18 @@ == redMine installation
redMine - project management software
-Copyright (C) 2006 Jean-Philippe Lang
-http://redmine.org/
+Copyright (C) 2006-2007 Jean-Philippe Lang
+http://redmine.rubyforge.org/
== Requirements
* Ruby on Rails 1.1
* Iconv
-* a database (see compatibility below)
-* (recommended) Apache/Lighttpd with FCGI support
+* A database (see compatibility below)
Optional:
* RedCloth (for textile formatting)
-* Net::LDAP for Ruby (for LDAP authentication)
Supported databases:
* MySQL (tested with MySQL 5)
@@ -40,14 +38,15 @@ Next releases (0.3.0+) will be provided with upgrade support. 3. Configure database parameters in config/database.yml
for "production" environment (default database is MySQL)
-4. Create the database structure. Under application main directory:
+4. Create the database structure. Under the application main directory:
rake migrate RAILS_ENV="production"
- It will create tables and default configuration data
+ It will create tables and an administrator account.
5. Insert default configuration data in database:
rake load_default_data RAILS_ENV="production"
- This step is optional, as you can define your own configuration
- (roles, trackers, statuses, workflows, enumerations) from sratch
+ It will load default roles, trackers, statuses, workflows and enumerations.
+ This step is optional (but recommended), as you can define your
+ own configuration from sratch.
6. Test the installation by running WEBrick web server:
ruby script/server -e production
|