Added more instructions to README, still testing but these will at least cause it to start up properly on a fresh machine
This commit is contained in:
parent
5fdcdab50f
commit
2e4fa02d68
1 changed files with 28 additions and 0 deletions
28
fas/README
28
fas/README
|
@ -19,6 +19,34 @@ script.
|
||||||
|
|
||||||
.. _TurboGears: http://www.turbogears.org
|
.. _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
|
Hacking
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue