From 0581c1ed0320acd612dc38757744e8cc1212014b Mon Sep 17 00:00:00 2001 From: Tommy Carpenter Date: Fri, 11 Aug 2017 15:02:32 -0400 Subject: Intial commit of CBS to ONAP Change-Id: I2082544efc59476ac8de0dc39c899f968c3847bd Signed-off-by: Tommy Carpenter Issue-Id: DCAEGEN2-47 --- bin/run.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 bin/run.py (limited to 'bin') diff --git a/bin/run.py b/bin/run.py new file mode 100755 index 0000000..7d30a00 --- /dev/null +++ b/bin/run.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 + +import connexion +import sys +from config_binding_service import get_logger + +_logger = get_logger(__name__) + +if __name__ == '__main__': + try: + app = connexion.App(__name__, specification_dir='../config_binding_service/swagger/') + app.add_api('swagger.yaml', arguments={'title': 'Config Binding Service'}) + app.run(host='0.0.0.0', port=10000, debug=False) + except Exception as e: + _logger.error("Fatal error. Could not start webserver due to: {0}".format(e)) -- cgit 1.2.3-korg