Changes between Version 1 and Version 2 of TgAuthPlugin


Ignore:
Timestamp:
Apr 25, 2008, 11:16:28 PM (16 years ago)
Author:
John Hampton
Comment:

Added installation and configuration instructions

Legend:

Unmodified
Added
Removed
Modified
  • TgAuthPlugin

    v1 v2  
    1 = TurboGears Auth Store =
     1= !TurboGears Auth Store =
    22
    33== Description ==
     
    2323You can check out TgAuthPlugin from [http://trac-hacks.org/svn/tgauthplugin here] using Subversion, or [source:tgauthplugin browse the source] with Trac.
    2424
    25 == Example ==
     25== Installation ==
     26 * Grab the source
     27 * Unpack the source
     28 * Change into the source directory that contains the `setup.py` file
     29 * Build an egg:
     30{{{
     31python setup.py bdist_egg
     32}}}
     33 * Copy the egg, found in `dist/` to the `plugins` directory of the desired trac environment
    2634
    27 install and enable it.
     35== Configuration ==
     36
     37Set the TG database location or the TG schema
     38
     39{{{
     40[account-manager]
     41; If TurboGears is located in another database
     42tg_database = postgres://user:pass@host/database
     43; If TruboGears is just in a different PostgreSQL schema
     44; tg_schema = schemaname
     45password_store = TgAuthStore
     46}}}
    2847
    2948== Recent Changes ==