Changeset 199

Show
Ignore:
Timestamp:
01/05/06 04:07:15 (3 years ago)
Author:
lazyatom
Message:

Added more installing information to the README

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • login_engine/trunk/README

    r180 r199  
    1515= Installation 
    1616 
    17 Installing the Login Engine is fairly simple. You'll probably need to accept the SSL certificate here for the OpenSVN servers. For example: 
    18     $ script/plugin install login_engine 
    19   or 
    20     % svn co https://opensvn.csie.org/rails_engines/plugins/login_engine <MY_RAILS_APP>/vendor/plugins/login_engine 
     17Installing the Login Engine is fairly simple. You can use either Rails' own built in plugin manager (since Engines are still plugins), or SVN itself if you are happier with that. 
     18 
     19=== <tt>script/plugin</tt> 
     20 
     21  $ ruby script/plugin discover 
     22  $ ruby script/plugin install engines 
     23  $ ruby script/plugin install login_engine 
     24 
     25=== SVN 
     26 
     27  $ cd your_app_directory 
     28  % svn co http://opensvn.csie.org/rails_engines/plugins/engines 
     29  % svn co http://opensvn.csie.org/rails_engines/plugins/login_engine 
     30 
     31 
     32=== Setup your Rails application 
    2133 
    2234There are a few configuration steps that you'll need to take to get everything running smoothly. Listed below are the changes to your application you will need to make. 
    23  
    24 === Setup your Rails application 
    2535 
    2636Edit your <tt>database.yml</tt>, most importantly! You might also want to move <tt>public/index.html</tt> out of the way, and set up some default routes in <tt>config/routes.rb</tt>.