From: richard Date: Thu, 26 Jul 2001 06:47:57 +0000 (+0000) Subject: Updated for new installation procedure X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2fce620d33cc7c824eef630132edb0e711da10c8;p=roundup.git Updated for new installation procedure git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@88 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/INSTALL.TXT b/INSTALL.TXT index d32a37b..878abe9 100644 --- a/INSTALL.TXT +++ b/INSTALL.TXT @@ -7,23 +7,9 @@ These instructions work on redhat 6.2 and mandrake 8.0 - with the caveat that these systems don't come with python 2.0 or newer installed, so you'll have to upgrade python before this stuff will work. -Roundup is configurable using a localconfig.py file in the instance home. -It may have the following variable declarations: - - MAILHOST - The SMTP mail host that roundup will use to send mail - MAIL_DOMAIN - The domain name used for email addresses - -Any further configuration should be possible by editing the instance home's -__init__.py directly. - -The email addresses used by the system by default are: - - issue_tracker@MAIL_DOMAIN - submissions of issues - roundup-admin@MAIL_DOMAIN - roundup's internal use (problems, etc) - Prerequisites ------------------ +------------- Either: . Python 2.0 with pydoc installed. See http://www.lfw.org/ for pydoc. or @@ -32,6 +18,24 @@ or You will need either the anydbm or bsddb module. +Testing the Software +-------------------- + +Run "python -c 'import tests;tests.go()'" and make sure there's no errors. +If there are errors, please let us know! + + +Installing the Software +----------------------- + +1. "./setup.py install" +2. At present, the programs aren't installed, so you will need to copy: + roundup-admin + roundup-mailgw + roundup-server + to /usr/local/bin if you wish to have them installed. + + Initial Setup ============= @@ -40,6 +44,20 @@ Instance -------- Try "./roundup-admin init" :) +Roundup is configurable using a localconfig.py file in the instance home. +It may have the following variable declarations: + + MAILHOST - The SMTP mail host that roundup will use to send mail + MAIL_DOMAIN - The domain name used for email addresses + +Any further configuration should be possible by editing the instance home's +__init__.py directly. + +The email addresses used by the system by default are: + + issue_tracker@MAIL_DOMAIN - submissions of issues + roundup-admin@MAIL_DOMAIN - roundup's internal use (problems, etc) + Mail ----