From 2e4fa02d683176e714cd9832d2b57bed75579db1 Mon Sep 17 00:00:00 2001 From: Michael McGrath Date: Fri, 29 Feb 2008 16:12:21 -0600 Subject: [PATCH] Added more instructions to README, still testing but these will at least cause it to start up properly on a fresh machine --- fas/README | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/fas/README b/fas/README index eb1560d..343d44a 100644 --- a/fas/README +++ b/fas/README @@ -19,6 +19,34 @@ script. .. _TurboGears: http://www.turbogears.org +------- +Prerequisites +------- +Before you can get started, make sure to have the following packages installed +(example being from Fedora 8 with a local postgres database server) + +yum install git-core postgresql-plpython postgresql-server postgresql-python \ +python-TurboMail TurboGears pygpgme + +If you are unfamiliar with postgres and this is your first time installing it, +you will want to generate the database and allow users to connect. First as +root run: + +/etc/init.d/postgresql initdb + +Then make sure the bottom of /var/lib/pgsql/data/pg_hba.conf looks like: + +# TYPE DATABASE USER CIDR-ADDRESS METHOD + +# "local" is for Unix domain socket connections only +local all all ident sameuser +# IPv4 local connections: +#host all all 127.0.0.1/32 ident sameuser +# IPv6 local connections: +#host all all ::1/128 ident sameuser + +host all all 0.0.0.0 0.0.0.0 md5 + ------- Hacking