diff --git a/doc/postgresql.md b/doc/postgresql.md index 67aefdd..8493d36 100644 --- a/doc/postgresql.md +++ b/doc/postgresql.md @@ -15,6 +15,31 @@ - Run postgres server initialised with a sample database and graphically interact with it using [pgweb](https://github.com/sosedoff/pgweb): +## Guide + +{#init} +### Creating users & tables + +Assuming your initial schema is defined in `./scripts/db.sql`: + +```nix +# In `perSystem.process-compose.` +{ + services.postgres."pg1" = { + enable = true; + initialScript.before = '' + CREATE USER myuser WITH password 'mypasswd'; + ''; + initialDatabases = [ + { + name = "mydb"; + schemas = [ ./scripts/db.sql ]; + } + ]; + }; +} +``` + ## Gotchas {#socket-path}