Merge "Move requirement.txt from tests/ci/ to project root path"
[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
14 from api.urls import urlpatterns
15
16 logger = logging.getLogger(__name__)
17
18 app = Flask(__name__)
19
20 api = Api(app)
21
22 reduce(lambda a, b: a.add_resource(b.resource, b.url,
23                                    endpoint=b.endpoint) or a, urlpatterns, api)
24
25 if __name__ == '__main__':
26     logger.info('Starting server')
27     app.run(host='0.0.0.0')