diff options
-rw-r--r-- | .envrc | 2 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | README | 24 |
3 files changed, 28 insertions, 2 deletions
@@ -3,6 +3,8 @@ export PPQ_POSTGRES_VERSION=15 export PPQ_POSTGRES_DIR=$(expand_path postgres) export PPQ_POSTGRES_DATA_DIR=$(expand_path postgres/data) +source_env_if_exists .envrc.local + # Settings for libpq-based clients and postgres itself export PGDATA="${PPQ_POSTGRES_DATA_DIR}" export PGHOST="${PPQ_POSTGRES_DATA_DIR}" @@ -1,2 +1,4 @@ +.envrc.local postgres/data -postgres/postgresql_overrides.conf
\ No newline at end of file +postgres/postgresql_overrides.conf +postgres/prepare.sql
\ No newline at end of file @@ -19,4 +19,26 @@ Then you can run a Postgres server with `./ppq start`. All Postgres client programs (like `psql`, `pg_restore` etc) are available and environment variables like `PGUSER` and `PGHOST` are set -up to ensure it will talk to the local Postgres server automatically.
\ No newline at end of file +up to ensure it will talk to the local Postgres server automatically. + + +Customizing the project +----------------------- + +The `.envrc` file loads a `.envrc.local` if it exists. Here, you can +override any environment variables you want. The following environment +variables can be overridden: + + PPQ_POSTGRES_VERSION - the major Postgres version to use + PPQ_POSTGRES_DIR - The *absolute path* to the directory that holds that data dir + PPQ_POSTGRES_DATA_DIR - The *absolute path* to the PostgreSQL data directory + +Note that you can use direnv's expand_path function to make a relative +path absolute. + +The `ppq.sh` script will also execute `${PPQ_POSTGRES_DIR}/prepare.sql` +when preparing the database via initdb. + +If you want to add `postgresql.conf` settings, you can create a file +called `${PPQ_POSTGRES_DIR}/postgresql_overrides.conf` and it will be +loaded by `postgresql.conf`.
\ No newline at end of file |