blob: 01fe9c7abf3f7e9b3c21de5d6432d5bc5ac6c36f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
PostgreSQL setup
================
Create a user for lxr and give the user permission to create databases:
createuser -P lxr
Create a database for lxr:
createdb -O lxr lxr
Initialise the database:
psql -U lxr lxr
\i %%LXRDIR%%/initdb-postgres
Just ignore the errors about unimplemented functions.
|