Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 7
- Log:
Initial import of RForum 0.2 sources from a downloaded Tarball.
RForum is a Ruby On Rails based forum and mail gateway service.
- Author:
- adh
- Date:
- Sat Jul 22 18:43:13 +0100 2006
- Size:
- 1024 Bytes
1 | == Requirements |
2 | * Ruby >= 1.8.2 (http://www.ruby-lang.org) |
3 | * RubyGems (http://rubygems.rubyforge.org) |
4 | * SQLite, MySQL or PostgreSQL with Ruby bindings |
5 | |
6 | == Installation |
7 | 1. Install rails: |
8 | gem install rails --include-dependencies |
9 | 2. Download the RForum package from http://rforum.andreas-s.net and extract |
10 | it. |
11 | 3. Edit config/database.yml for your database. If you have SQLite installed |
12 | you can keep the default values for testing purposes. |
13 | 4. Setup the database tables: |
14 | RAILS_ENV=production rake migrate |
15 | 5. Copy config/default_site.rb to config/site.rb and edit it. |
16 | 6. Start the built-in webserver: |
17 | RAILS_ENV=production script/server |
18 | or set up FastCGI as described in the Rails documentation: |
19 | http://rails.rubyonrails.com/files/README.html |
20 | 7. Go to http://your-host:3000/user/register, register yourself as a new user |
21 | and give the new user administrator privileges: |
22 | RAILS_ENV=production script/make_admin username |
23 | 8. Look up your password in the registration mail and log in to create forums. |