Merge "update the huawei's lab"
[pharos.git] / tools / pharos-dashboard / src / pharos_dashboard / wsgi.py
1 ##############################################################################
2 # Copyright (c) 2016 Max Breitenfeldt 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
10
11 """
12 WSGI config for pharos_dashboard project.
13
14 It exposes the WSGI callable as a module-level variable named ``application``.
15
16 For more information on this file, see
17 https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/
18 """
19
20 import os
21
22 from django.core.wsgi import get_wsgi_application
23
24 os.environ.setdefault("DJANGO_SETTINGS_MODULE", "pharos_dashboard.settings")
25
26 application = get_wsgi_application()