Add pgwui.route_prefix to example ini files
authorKarl O. Pinc <kop@meme.com>
Wed, 14 Nov 2018 00:55:07 +0000 (18:55 -0600)
committerKarl O. Pinc <kop@meme.com>
Wed, 14 Nov 2018 01:21:46 +0000 (19:21 -0600)
examples/development.ini
examples/pgwui.ini

index b70bccb97ff420f755b078f82462375c6ff9bdc6..4500ff67a2e70bd29586c0092d004bd4a5e8fa74 100644 (file)
@@ -32,6 +32,25 @@ pyramid.includes =
 #dry_run = True
 pgwui.dry_run = False
 
+# Routing
+
+# Routes are what call up specific pages.  They are usually the
+# part of the URL which comes after the http://example.com.
+#
+# All routes should probably begin with a "/" character but
+# if they do not a "/" will be automatically prepended.
+#
+# A full URL may be given as a route.  The is useful for redirecting
+# to other sites.
+#
+# For more information on route syntax see:
+# https://docs.pylonsproject.org/projects/pyramid/en/master/narr/urldispatch.html#route-pattern-syntax
+
+# A prefix for all routes.  If the prefix is "/a/b/c" then
+# all URLs will begin with something like: http://example.com/a/b/c
+# The default is no prefix.
+# pgwui.route_prefix =
+
 
 #
 # Pyramid configuration
index 421d31d453ebf47c1ff97bcddc7a2719c2c8d4bb..99213bacd8f226bbe1fe6d08d3d025596d2f4d1d 100644 (file)
@@ -30,6 +30,25 @@ pyramid.includes =
 # Whether or not to change the db content.
 pgwui.dry_run = False
 
+# Routing
+
+# Routes are what call up specific pages.  They are the
+# part of the URL which comes after the http://example.com.
+#
+# All routes should probably begin with a "/" character but
+# if they do not a "/" will be automatically prepended.
+#
+# A full URL may be given as a route.  The is useful for redirecting
+# to other sites.
+#
+# For more information on route syntax see:
+# https://docs.pylonsproject.org/projects/pyramid/en/master/narr/urldispatch.html#route-pattern-syntax
+
+# A prefix for all routes.  If the prefix is "/a/b/c" then
+# all URLs will begin with something like: http://example.com/a/b/c
+# The default is no prefix.
+# pgwui.route_prefix =
+
 
 #
 # Pyramid configuration