From 8e64f1c04ae3cf97dfd1ff343cbadd9757027c51 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Thu, 29 Apr 2021 10:56:54 -0500 Subject: [PATCH] Example pgwui_copy configs --- examples/etc/pgwui.ini | 31 +++++++++++++++++++++++++++++++ examples/misc/development.ini | 31 +++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+) diff --git a/examples/etc/pgwui.ini b/examples/etc/pgwui.ini index e4d900e..7fb9a2e 100644 --- a/examples/etc/pgwui.ini +++ b/examples/etc/pgwui.ini @@ -151,6 +151,7 @@ pgwui.dry_run = False # # The default for some PGWUI components are: # pgwui.routes = +# pgwui_copy = /copy # pgwui_logout = /logout # pgwui_upload = /upload @@ -323,6 +324,36 @@ pgwui.dry_run = False # See pgwui_upload above for details. +# pgwui_copy + +# pgwui.pgwui_copy = +# menu_label = 'copy -- Copy a Schema Between Databases' +# +# default_source_db = (See description) +# The default for the database from which data is copied. +# The default is the value of pgwui.default_db. +# +# sensitive_db = (See description) +# A list of databases (one per line) for which an extra +# confirmation step is required before alteration. Comparisons +# are done in a case-insensitive fashion. The default is the +# value of pgwui.default_db. The setting "" (nothing after the = +# sign) means that no database requires additional confirmation +# before alteration. Example: +# sensitive_dbs = scratch +# scritch +# +# default_target_db = +# The default for the database to which data is copied. (Optional) +# +# default_schema = +# The default for the name of the schema which is copied. (Optional) +# +# bin = /usr/bin +# Absolute path to the directory containing the pg_dump and pg_restore +# binaries. (Optional) + + # # Pyramid configuration # https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html diff --git a/examples/misc/development.ini b/examples/misc/development.ini index b122e05..0712b36 100644 --- a/examples/misc/development.ini +++ b/examples/misc/development.ini @@ -155,6 +155,7 @@ pgwui.dry_run = False # # The default for some PGWUI components are: # pgwui.routes = +# pgwui_copy = /copy # pgwui_logout = /logout # pgwui_upload = /upload @@ -331,6 +332,36 @@ pgwui.validate_hmac = False # See pgwui_upload above for details. +# pgwui_copy + +# pgwui.pgwui_copy = +# menu_label = 'copy -- Copy a Schema Between Databases' +# +# default_source_db = (See description) +# The default for the database from which data is copied. +# The default is the value of pgwui.default_db. +# +# sensitive_dbs = (See description) +# A list of databases (one per line) for which an extra +# confirmation step is required before alteration. Comparisons +# are done in a case-insensitive fashion. The default is the +# value of pgwui.default_db. The setting "" (nothing after the = +# sign) means that no database requires additional confirmation +# before alteration. Example: +# sensitive_dbs = scratch +# scritch +# +# default_target_db = +# The default for the database to which data is copied. (Optional) +# +# default_schema = +# The default for the name of the schema which is copied. (Optional) +# +# bin = /usr/bin +# Absolute path to the directory containing the pg_dump and pg_restore +# binaries. (Optional) + + # # Pyramid configuration # https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html -- 2.34.1