Skip to content

Commit b4bf2d8

Browse files
committed
Improve doc and reporting for Transform functions
1 parent e756240 commit b4bf2d8

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,10 @@ export DATABASE_URL="host=localhost user=postgres"
124124

125125
Other parameters in the configuration file can be over-ridden in the environment.
126126
Prepend the upper-cased parameter name with `PGFS_section_` to set the value.
127-
For example, to change the HTTP port and service title:
127+
For example, to change the HTTP port, function schemas, and service title:
128128
```bash
129129
export PGFS_SERVER_HTTPPORT=8889
130+
export PGFS_DATABASE_FUNCTIONINCLUDES="postgisftw,my_funs"
130131
export PGFS_METADATA_TITLE="My PGFS"
131132
```
132133

hugo/content/installation/configuration.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,10 @@ export DATABASE_URL="host=localhost user=postgres"
4545

4646
Other parameters in the configuration file can be over-ridden in the environment.
4747
Prepend the upper-cased parameter name with `PGFS_section_` to set the value.
48-
For example, to change the HTTP port and service title:
48+
For example, to change the HTTP port, function schemas, and service title:
4949
```bash
5050
export PGFS_SERVER_HTTPPORT=8889
51+
export PGFS_DATABASE_FUNCTIONINCLUDES="postgisftw,my_funs"
5152
export PGFS_METADATA_TITLE="My PGFS"
5253
```
5354

internal/conf/config.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,4 +179,5 @@ func DumpConfig() {
179179
log.Debugf(" TableIncludes = %v", Configuration.Database.TableIncludes)
180180
log.Debugf(" TableExcludes = %v", Configuration.Database.TableExcludes)
181181
log.Debugf(" FunctionIncludes = %v", Configuration.Database.FunctionIncludes)
182+
log.Debugf(" TransformFunctions = %v", Configuration.Server.TransformFunctions)
182183
}

0 commit comments

Comments
 (0)