-= PostgreSQL Installation Instructions =-

These instructions make the assumption that you are already well aware
on how to install and configure PostgreSQL.    If you have never had the
opportunity to configure Postgre, we would recommend the one visits the
following site for documentation of information to proceed: 
http://www.postgresql.org/

Since version 1.2.0 of Ethereal Realms, the use of Database dumps were
put into use instead of a long complicated configuration script that
will only see use once.   Not only does this allow for an exact snapshot
of the database schemia, but makes use of restoration tools which allow
for less opportunity of failure. 

The ./pgsql directory contains the following files:
        webchat.schema
        webchat.data

In order to 'recover' the database for use with Ethereal, you will need
to make use of two tools which are included with a normal install of
Postgre.  Please note, this makes the assumption that the Postmaster
daemon is running and that a user named 'webchat' is created.    If this
has yet to have been done, please consult Postgre's documentation.

Once this has been done the following commands can be issued to get
things up and running on the database side:

 cd [location of createdb and psql]
 createdb -U pgsql -W webchat
 psql  -U pgsql -W webchat < [path]/pgsql/webchat.schema
  (Lines will be passing by)
 psql  -U pgsql -W webchat < [path]/pgsql/webchat.data
  (Lines will be passing by)

Depending on your user access rules specified in the pg_hba.conf, you
may or may not need to enter a password.   Also, the username needed to
perform these tasks may be different depending on your access, which
implies the switches may need to change as needed.
