#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
# 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