##// END OF EJS Templates
added an icon on news comments...
added an icon on news comments git-svn-id: http://redmine.rubyforge.org/svn/trunk@142 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r138:18001e5a5b14
r139:2dc385079844
Show More
INSTALL
73 lines | 2.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
Initial commit...
r2 == redMine installation
redMine - project management software
Jean-Philippe Lang
various documentation updates...
r138 Copyright (C) 2006-2007 Jean-Philippe Lang
http://redmine.rubyforge.org/
Jean-Philippe Lang
Initial commit...
r2
== Requirements
* Ruby on Rails 1.1
Jean-Philippe Lang
0.3.0...
r24 * Iconv
Jean-Philippe Lang
various documentation updates...
r138 * A database (see compatibility below)
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
* new report: project activity...
r42 Optional:
* RedCloth (for textile formatting)
Jean-Philippe Lang
v0.2.0...
r5
Jean-Philippe Lang
* new report: project activity...
r42 Supported databases:
Jean-Philippe Lang
v0.2.0...
r5 * MySQL (tested with MySQL 5)
* PostgreSQL (tested with PostgreSQL 8.1)
* Oracle (tested with Oracle 10g)
* SQL Server (tested with SQL Server 2005)
* SQLite (tested with SQLite 3)
Jean-Philippe Lang
* new report: project activity...
r42
Jean-Philippe Lang
0.3.0...
r24 == Upgrade
Due to major database changes, there is no migration support from beta 0.2.0.
Next releases (0.3.0+) will be provided with upgrade support.
Jean-Philippe Lang
Initial commit...
r2
== Installation
1. Uncompress program archive:
tar zxvf <filename>
2. Create an empty database: "redmine" for example
3. Configure database parameters in config/database.yml
Jean-Philippe Lang
v0.2.0...
r5 for "production" environment (default database is MySQL)
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
various documentation updates...
r138 4. Create the database structure. Under the application main directory:
Jean-Philippe Lang
Initial commit...
r2 rake migrate RAILS_ENV="production"
Jean-Philippe Lang
various documentation updates...
r138 It will create tables and an administrator account.
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
0.3.0...
r25 5. Insert default configuration data in database:
rake load_default_data RAILS_ENV="production"
Jean-Philippe Lang
various documentation updates...
r138 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.
Jean-Philippe Lang
0.3.0...
r25
6. Test the installation by running WEBrick web server:
Jean-Philippe Lang
Initial commit...
r2 ruby script/server -e production
Once WEBrick has started, point your browser to http://localhost:3000/
You should now see the application welcome page
Jean-Philippe Lang
0.3.0...
r25 7. Use default administrator account to log in:
Jean-Philippe Lang
Initial commit...
r2 login: admin
password: admin
Jean-Philippe Lang
0.3.0...
r25 8. Setup Apache or Lighttpd with fastcgi for best performance.
Jean-Philippe Lang
Initial commit...
r2
== Configuration
Jean-Philippe Lang
0.3 unstable...
r10 A sample configuration file is provided: "config/config_custom.example.rb"
Rename it to config_custom.rb and edit parameters.
Jean-Philippe Lang
Initial commit...
r2 Don't forget to restart the application after any change.
config.action_mailer.server_settings: SMTP server configuration
config.action_mailer.perform_deliveries: set to false to disable mail delivering