From d41da864d5db242f5583fca7f394c289f6a2df34 Mon Sep 17 00:00:00 2001 From: Manas Kelshikar Date: Wed, 30 Apr 2014 12:59:28 -0700 Subject: [PATCH] Config setting and reactor folder structure * Using oslo.config for configuration. * Added logging.conf place-holder. * Setup basic structure for reactor modules as per development guidelines. --- etc/kandra.conf | 1 + etc/logging.conf | 1 + reactor/__init__.py | 0 reactor/adapter/__init__.py | 0 requirements.txt | 3 ++- 5 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 etc/kandra.conf create mode 100644 etc/logging.conf create mode 100644 reactor/__init__.py create mode 100644 reactor/adapter/__init__.py diff --git a/etc/kandra.conf b/etc/kandra.conf new file mode 100644 index 0000000000..ef1ef37b0a --- /dev/null +++ b/etc/kandra.conf @@ -0,0 +1 @@ +# System-wide confguration diff --git a/etc/logging.conf b/etc/logging.conf new file mode 100644 index 0000000000..9457570f14 --- /dev/null +++ b/etc/logging.conf @@ -0,0 +1 @@ +# System-wide logging configuration diff --git a/reactor/__init__.py b/reactor/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/reactor/adapter/__init__.py b/reactor/adapter/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/requirements.txt b/requirements.txt index 7c808bb9f0..013b8173bf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ pbr>=0.5.21,<1.0 pymongo -mongoengine \ No newline at end of file +mongoengine +oslo.config