summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7b6f2f2)
raw | patch | inline | side by side (parent: 7b6f2f2)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 26 Jul 2001 06:47:57 +0000 (06:47 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 26 Jul 2001 06:47:57 +0000 (06:47 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@88 57a73879-2fb5-44c3-a270-3262357dd7e2
INSTALL.TXT | patch | blob | history |
diff --git a/INSTALL.TXT b/INSTALL.TXT
index d32a37b92040a21f23f480dbfd0641f1a503e35f..878abe94b684f9e8454c8da19b4dc7b966e3e5a3 100644 (file)
--- a/INSTALL.TXT
+++ b/INSTALL.TXT
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
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
=============
--------
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
----