summaryrefslogtreecommitdiffstats
path: root/qtip/api/__main__.py
blob: 7b9cdaf564a140aa49e897ac68dfa443862999cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
##############################################################################
# Copyright (c) 2017 akhil.batra@research.iiit.ac.in and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

import connexion
import os

swagger_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'swagger/'))


def main():
    app = connexion.App(__name__, specification_dir=swagger_dir)
    app.add_api('swagger.yaml', base_path='/v1.0')
    app.run(host='0.0.0.0', port='5000')


if __name__ == '__main__':
    main()