Merge "import new _put_file_shell method from upstream rally"
[yardstick.git] / api / server.py
1 ##############################################################################
2 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 import logging
10
11 from flask import Flask
12 from flask_restful import Api
13 from flasgger import Swagger
14
15 from api.urls import urlpatterns
16 from yardstick import _init_logging
17
18 logger = logging.getLogger(__name__)
19
20 app = Flask(__name__)
21
22 Swagger(app)
23
24 api = Api(app)
25
26
27 reduce(lambda a, b: a.add_resource(b.resource, b.url,
28                                    endpoint=b.endpoint) or a, urlpatterns, api)
29
30 if __name__ == '__main__':
31     _init_logging()
32     logger.setLevel(logging.DEBUG)
33     logger.info('Starting server')
34     app.run(host='0.0.0.0')