Merge "Modify vfc huawei vnfmdriver url openoapi to api"
[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  ]
48
49 MIDDLEWARE_CLASSES = [
50     'django.middleware.security.SecurityMiddleware',
51     'django.contrib.sessions.middleware.SessionMiddleware',
52     'django.middleware.common.CommonMiddleware',
53     'django.middleware.csrf.CsrfViewMiddleware',
54     'django.contrib.auth.middleware.AuthenticationMiddleware',
55     'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
56     'django.contrib.messages.middleware.MessageMiddleware',
57     'django.middleware.clickjacking.XFrameOptionsMiddleware',
58  ]
59
60 ROOT_URLCONF = 'driver.urls'
61
62 WSGI_APPLICATION = 'driver.wsgi.application'
63
64
65 REST_FRAMEWORK = {
66     'DEFAULT_RENDERER_CLASSES': (
67         'rest_framework.renderers.JSONRenderer',),
68
69     'DEFAULT_PARSER_CLASSES': (
70         'rest_framework.parsers.MultiPartParser',
71         'rest_framework.parsers.JSONParser')}
72 """
73 DATABASES = {
74     'default': {
75         'ENGINE': 'django.db.backends.mysql',
76         'NAME': 'vmanager',
77         'HOST': 'localhost',
78         'USER': 'root',
79         'PASSWORD':'password',
80     },
81 }
82
83 redis_client = redis.StrictRedis(host='127.0.0.1', port=6379, password='', db=1)
84 """
85 DATABASES = {
86     'default': {
87         'ENGINE': 'django.db.backends.sqlite3',
88         'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), }}
89
90 TIME_ZONE = 'UTC'
91
92 # Static files (CSS, JavaScript, Images)
93 # https://docs.djangoproject.com/en/1.6/howto/static-files/
94
95 STATIC_URL = '/static/'
96
97 LOGGING = {
98     'version': 1,
99     'disable_existing_loggers': True,
100     'formatters': {
101         'standard': {
102             'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s', }, },
103     'filters': {},
104     'handlers': {
105         'driver_handler': {
106             'level': 'DEBUG',
107             'class': 'logging.handlers.RotatingFileHandler',
108             'filename': os.path.join(BASE_DIR, 'logs/runtime_driver.log'),
109             'formatter': 'standard',
110             'maxBytes': 1024 * 1024 * 50,
111             'backupCount': 5, }, },
112
113     'loggers': {
114         'driver': {
115             'handlers': ['driver_handler'],
116             'level': 'DEBUG',
117             'propagate': False}, }}
118
119 if 'test' in sys.argv:
120     config.REG_TO_MSB_WHEN_START = False
121     REST_FRAMEWORK = {}
122     import platform
123     if platform.system() == 'Linux':
124         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
125         TEST_OUTPUT_VERBOSE = True
126         TEST_OUTPUT_DESCRIPTIONS = True
127         TEST_OUTPUT_DIR = 'test-reports'