pg_featureserv
pg_featureserv copied to clipboard
Environment variable substitution for configuration values
To make it easier to configure the service in some environments (e.g. Kubernetes) it would be useful to be able to substitute environment variables into configuration parameter values.
For example, this would allow specifying the following in the configuration file:
DbConnection=postgresql://$(PGUSER):$(PGPASSWORD)@$(PGHOST)/database
Currently Viper does not provide this, but it has been logged as an issue.
This functionality is already implemented. The issue can be closed IMHO