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