Add vfc-ztevnfmdriver swagger settings
[vfc/nfvo/driver/vnfm/svnfm.git] / zte / vmanager / driver / settings.py
1 # Copyright 2016-2017 ZTE Corporation.
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 os
16 import sys
17
18 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
19 from driver.pub.config import config
20
21 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
22
23
24 # Quick-start development settings - unsuitable for production
25 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
26
27 # SECURITY WARNING: keep the secret key used in production secret!
28 SECRET_KEY = '3o-wney!99y)^h3v)0$j16l9=fdjxcb+a8g+q3tfbahcnu2b0o'
29
30 # SECURITY WARNING: don't run with debug turned on in production!
31 DEBUG = True
32
33 ALLOWED_HOSTS = []
34
35
36 # Application definition
37
38 INSTALLED_APPS = [
39     'django.contrib.auth',
40     'django.contrib.contenttypes',
41     'django.contrib.sessions',
42     'django.contrib.messages',
43     'django.contrib.staticfiles',
44     'rest_framework',
45     'driver.pub.database',
46     'driver.interfaces',
47     'drf_yasg',
48 ]
49
50 MIDDLEWARE_CLASSES = [
51     'django.middleware.security.SecurityMiddleware',
52     'django.contrib.sessions.middleware.SessionMiddleware',
53     'django.middleware.common.CommonMiddleware',
54     'django.middleware.csrf.CsrfViewMiddleware',
55     'django.contrib.auth.middleware.AuthenticationMiddleware',
56     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
57     'django.contrib.messages.middleware.MessageMiddleware',
58     'django.middleware.clickjacking.XFrameOptionsMiddleware',
59 ]
60
61 ROOT_URLCONF = 'driver.urls'
62
63 WSGI_APPLICATION = 'driver.wsgi.application'
64
65
66 REST_FRAMEWORK = {
67     'DEFAULT_RENDERER_CLASSES': (
68         'rest_framework.renderers.JSONRenderer',),
69
70     'DEFAULT_PARSER_CLASSES': (
71         'rest_framework.parsers.MultiPartParser',
72         'rest_framework.parsers.JSONParser')}
73 """
74 DATABASES = {
75     'default': {
76         'ENGINE': 'django.db.backends.mysql',
77         'NAME': 'vmanager',
78         'HOST': 'localhost',
79         'USER': 'root',
80         'PASSWORD':'password',
81     },
82 }
83
84 redis_client = redis.StrictRedis(host='127.0.0.1', port=6379, password='', db=1)
85 """
86 DATABASES = {
87     'default': {
88         'ENGINE': 'django.db.backends.sqlite3',
89         'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), }}
90
91 # drf-yasg
92 TEMPLATES = [
93     {
94         'BACKEND': 'django.template.backends.django.DjangoTemplates',
95         'DIRS': [],
96         'APP_DIRS': True,
97         'OPTIONS': {
98             'context_processors': [
99                 'django.template.context_processors.debug',
100                 'django.template.context_processors.request',
101                 'django.contrib.auth.context_processors.auth',
102                 'django.contrib.messages.context_processors.messages',
103             ],
104         },
105     },
106 ]
107
108 SWAGGER_SETTINGS = {
109     'LOGIN_URL': '/admin/login',
110     'LOGOUT_URL': '/admin/logout',
111
112     'DEFAULT_INFO': 'driver.swagger.urls.swagger_info'
113 }
114
115 TIME_ZONE = 'UTC'
116
117 # Static files (CSS, JavaScript, Images)
118 # https://docs.djangoproject.com/en/1.6/howto/static-files/
119
120 STATIC_URL = '/static/'
121
122 LOGGING = {
123     'version': 1,
124     'disable_existing_loggers': True,
125     'formatters': {
126         'standard': {
127             'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
128         },
129     },
130     'filters': {},
131     'handlers': {
132         'driver_handler': {
133             'level': 'DEBUG',
134             'class': 'logging.handlers.RotatingFileHandler',
135             'filename': os.path.join(
136                 BASE_DIR,
137                 'logs/runtime_driver.log'),
138             'formatter': 'standard',
139             'maxBytes': 1024 * 1024 * 50,
140             'backupCount': 5,
141         },
142     },
143     'loggers': {
144         'driver': {
145             'handlers': ['driver_handler'],
146             'level': 'DEBUG',
147             'propagate': False},
148     }}
149
150 if 'test' in sys.argv:
151     config.REG_TO_MSB_WHEN_START = False
152     REST_FRAMEWORK = {}
153     import platform
154     if platform.system() == 'Linux':
155         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
156         TEST_OUTPUT_VERBOSE = True
157         TEST_OUTPUT_DESCRIPTIONS = True
158         TEST_OUTPUT_DIR = 'test-reports'