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