##// END OF EJS Templates
Fixed: auto-generated links corrupted when url contains & characters in the query string....
Fixed: auto-generated links corrupted when url contains & characters in the query string. git-svn-id: http://redmine.rubyforge.org/svn/trunk@690 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r440:6a8ddc954f05
r679:521f4a6ddbc9
Show More
INSTALL
71 lines | 2.0 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
Jean-Philippe Lang
updated documentation...
r250 * Ruby on Rails 1.2.2
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:
Jean-Philippe Lang
0.4.0 release...
r140 * RedCloth (to enable textile formatting)
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 * SVN binaries (needed for repository browsing, must be available in PATH)
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
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
updated INSTALL doc with rake db:migrate instead of the deprecated rake migrate...
r373 rake db: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
updated documentation...
r250
8. You can go to "Admin -> Settings" to modify application settings.
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
updated documentation...
r250 9. Setup Apache or Lighttpd with fastcgi for best performance.
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
updated documentation...
r250 == SMTP server Configuration
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
0.4.0 release...
r140 In config/environment.rb, you can set parameters for your SMTP server:
Jean-Philippe Lang
updated documentation...
r250 config.action_mailer.smtp_settings: SMTP server configuration
Jean-Philippe Lang
Initial commit...
r2 config.action_mailer.perform_deliveries: set to false to disable mail delivering
Jean-Philippe Lang
settings are now stored in the database (config_custom.rb no more used) and editable through the application in: Admin -> Settings...
r164 Don't forget to restart the application after any change.
Jean-Philippe Lang
0.4.0 release...
r140
== Upgrading
See UPGRADING