43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
#!/usr/bin/env python
|
|
|
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 Rackspace, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""Bootstrap for self-hosting a Marconi node
|
|
|
|
Alternatively, for hosting a WSGI app with an external server, configure
|
|
kernel with the WSGI transport and export the WSGI app callable, e.g.:
|
|
|
|
logging.config.fileConfig(logging_conf_file)
|
|
kernel = Kernel(conf_file)
|
|
|
|
app = kernel.transport.app
|
|
|
|
"""
|
|
|
|
import logging.config
|
|
from marconi.common import Kernel
|
|
|
|
|
|
if __name__ == '__main__':
|
|
# @todo Parse command-line args
|
|
logging_config_file = '/etc/marconi/logging.conf'
|
|
config_file = '/etc/marconi/marconi.conf'
|
|
|
|
logging.config.fileConfig(logging_config_file)
|
|
kernel = Kernel(config_file)
|
|
kernel.run()
|