Sha256: f0fb1a2da25e7491da08972fc8df18262c04ca8a6b58b41e3905b804e54585c0

Contents?: true

Size: 1.49 KB

Versions: 2

Compression:

Stored size: 1.49 KB

Contents

# Installation and Setup

Once you have extracted the files into the directory where you would like to
install Radiant:

1. Change to the new application directory and run:

    % bundle install

to create a gem bundle containing all of the radiant app's dependencies.
Whenever you edit the Gemfile to add new extensions, run `bundle install`
again.

2. Decide what database you want to use. Radiant ships with a SQLite
configuration that will let you try it out. For serious use you will probably
want to use on of the other supported databases: MySQL, PostgreSQL, SQL Server
or DB2. This is the time to set up the database, grant permissions and edit
config/database.yml to match.

3. Run the database bootstrap rake task:

    % bundle exec rake production db:bootstrap

(If you would like bootstrap a development database run `bundle exec rake db:bootstrap`.)

4. Radiant is a normal Rails application and you can run it in all the usual
ways. To test your installation, try running:

    % script/server production

And type this address into a web browser:

    http://localhost:3000

The administrative interface is available at /admin/. If your site is empty,
you will be directed there automatically to create a home page. By default the
bootstrap rake task creates a user called "admin" with a password of
"radiant".

When using Radiant on a production system you may also need to set permissions
on the public and cache directories so that your Web server can access those
directories with the user that it runs under.

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
radiant-1.0.0.rc4 testthegemgeneration/INSTALL.md
radiant-1.0.0.rc4 INSTALL.md