Adoption of base framework code for azure plugin
[multicloud/azure.git] / azure / azure / api_v2 / app.py
1 #    Copyright (c) 2018 Amdocs
2 #
3 #    Licensed under the Apache License, Version 2.0 (the "License");
4 #    you may not use this file except in compliance with the License.
5 #    You may obtain a copy of the License at
6 #
7 #        http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #    Unless required by applicable law or agreed to in writing, software
10 #    distributed under the License is distributed on an "AS IS" BASIS,
11 #    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #    See the License for the specific language governing permissions and
13 #    limitations under the License.
14
15 import pecan
16
17
18 def setup_app(config=None):
19     app_conf = {
20         'root': "azure.api_v2.api_router.root.RootController",
21         'modules': ["azure.api_v2"],
22         'debug': True,
23         # NOTE: By default, guess_content_type_from_ext is True, and Pecan will
24         # strip the file extension from url. For example, ../../swagger.json
25         # will look like ../../swagger to Pecan API router. This makes other
26         # url like ../../swagger.txt get the same API route. Set this to False
27         # to do strict url mapping.
28         'guess_content_type_from_ext': False
29     }
30     app = pecan.make_app(
31         app_conf.pop('root'),
32         **app_conf
33     )
34
35     return app