
I replaced the Dockerfiles that existed, which pulled anchor down from git with a single Dockerfile that uses the local version of anchor. This makes testing local changes to anchor very simple. I also updated the README to reflect these changes and fixed the varying line lenghts within that file. Change-Id: I313c840f594639e6c92ed6ff067da79652b74ed0
49 lines
1.0 KiB
Python
49 lines
1.0 KiB
Python
server = {
|
|
'port': '5016',
|
|
'host': '0.0.0.0'
|
|
}
|
|
|
|
# Pecan Application Configurations
|
|
app = {
|
|
'root': 'anchor.controllers.RootController',
|
|
'modules': ['anchor'],
|
|
# 'static_root': '%(confdir)s/public',
|
|
# 'template_path': '%(confdir)s/${package}/templates',
|
|
'debug': True,
|
|
'errors': {
|
|
'404': '/error/404',
|
|
'__force_dict__': True
|
|
},
|
|
}
|
|
|
|
logging = {
|
|
"formatters": {
|
|
"simple": {
|
|
"format": ("%(asctime)s %(levelname)-5.5s [%(name)s][%(process)d/"
|
|
"%(threadName)s] %(message)s")
|
|
},
|
|
},
|
|
"handlers": {
|
|
"console": {
|
|
"class": "logging.StreamHandler",
|
|
"formatter": "simple",
|
|
"level": "DEBUG"
|
|
},
|
|
},
|
|
"loggers": {
|
|
"anchor": {
|
|
"level": "DEBUG"
|
|
},
|
|
"wsgi": {
|
|
"level": "INFO"
|
|
},
|
|
"oslo_messaging": {
|
|
"level": "DEBUG"
|
|
},
|
|
},
|
|
"root": {
|
|
"handlers": ["console"],
|
|
"level": "INFO"
|
|
},
|
|
}
|