This is a sample Pecan project.
- -- Instructions for getting started can be found online at pecanpy.org -
- -- ...or you can search the documentation here: -
- - - -diff --git a/higgins/api/config.py b/higgins/api/config.py
index c13830217..ce0fca0a2 100644
--- a/higgins/api/config.py
+++ b/higgins/api/config.py
@@ -12,59 +12,9 @@
# License for the specific language governing permissions and limitations
# under the License.
-# Server Specific Configurations
-server = {
- 'port': '8080',
- 'host': '0.0.0.0'
-}
-
# Pecan Application Configurations
app = {
'root': 'higgins.controllers.root.RootController',
'modules': ['higgins'],
- 'static_root': '%(confdir)s/public',
- 'template_path': '%(confdir)s/higgins/templates',
'debug': True,
- 'errors': {
- 404: '/error/404',
- '__force_dict__': True
- }
}
-
-logging = {
- 'root': {'level': 'INFO', 'handlers': ['console']},
- 'loggers': {
- 'higgins': {'level': 'DEBUG', 'handlers': ['console'],
- 'propagate': False},
- 'pecan': {'level': 'DEBUG', 'handlers': ['console'],
- 'propagate': False},
- 'py.warnings': {'handlers': ['console']},
- '__force_dict__': True
- },
- 'handlers': {
- 'console': {
- 'level': 'DEBUG',
- 'class': 'logging.StreamHandler',
- 'formatter': 'color'
- }
- },
- 'formatters': {
- 'simple': {
- 'format': ('%(asctime)s %(levelname)-5.5s [%(name)s]'
- '[%(threadName)s] %(message)s')
- },
- 'color': {
- '()': 'pecan.log.ColorFormatter',
- 'format': ('%(asctime)s [%(padded_color_levelname)s] [%(name)s]'
- '[%(threadName)s] %(message)s'),
- '__force_dict__': True
- }
- }
-}
-
-# Custom Configurations must be in Python dictionary format::
-#
-# foo = {'bar':'baz'}
-#
-# All configurations are accessible at::
-# pecan.conf
diff --git a/higgins/api/templates/error.html b/higgins/api/templates/error.html
deleted file mode 100644
index f2d979614..000000000
--- a/higgins/api/templates/error.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<%inherit file="layout.html" />
-
-## provide definitions for blocks we want to redefine
-<%def name="title()">
- Server Error ${status}
-%def>
-
-## now define the body of the template
- Server Error ${status}
-
${message}
diff --git a/higgins/api/templates/index.html b/higgins/api/templates/index.html deleted file mode 100644 index f17c3862e..000000000 --- a/higgins/api/templates/index.html +++ /dev/null @@ -1,34 +0,0 @@ -<%inherit file="layout.html" /> - -## provide definitions for blocks we want to redefine -<%def name="title()"> - Welcome to Pecan! -%def> - -## now define the body of the template -This is a sample Pecan project.
- -- Instructions for getting started can be found online at pecanpy.org -
- -- ...or you can search the documentation here: -
- - - -