631ada8bc0f59c9f0b797031de080c24603b1874
[vfc/gvnfm/vnflcm.git] / lcm / lcm / settings.py
1 # Copyright 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 import redisco
19
20 from lcm.pub.config.config import REDIS_HOST, REDIS_PORT, REDIS_PASSWD
21 from lcm.pub.config.config import DB_NAME, DB_IP, DB_USER, DB_PASSWD, DB_PORT
22
23 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
24 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
25
26 # Quick-start development settings - unsuitable for production
27 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
28
29 # SECURITY WARNING: keep the secret key used in production secret!
30 SECRET_KEY = '3o-wney!99y)^h3v)0$j16l9=fdjxcb+a8g+q3tfbahcnu2b0o'
31
32 # SECURITY WARNING: don't run with debug turned on in production!
33 DEBUG = True
34
35 ALLOWED_HOSTS = []
36
37 # Application definition
38
39 INSTALLED_APPS = [
40     'django.contrib.auth',
41     'django.contrib.contenttypes',
42     'django.contrib.sessions',
43     'django.contrib.messages',
44     'django.contrib.staticfiles',
45     'rest_framework',
46     'lcm.pub.database',
47     'lcm.samples'
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 = 'lcm.urls'
62
63 WSGI_APPLICATION = 'lcm.wsgi.application'
64
65 REST_FRAMEWORK = {
66     'DEFAULT_RENDERER_CLASSES': (
67         'rest_framework.renderers.JSONRenderer',
68     ),
69
70     'DEFAULT_PARSER_CLASSES': (
71         'rest_framework.parsers.JSONParser',
72         'rest_framework.parsers.MultiPartParser',
73         # 'rest_framework.parsers.FormParser',
74         # 'rest_framework.parsers.FileUploadParser',
75     )
76 }
77
78 DATABASES = {
79     'default': {
80         'ENGINE': 'django.db.backends.mysql',
81         'NAME': DB_NAME,
82         'HOST': DB_IP,
83         'PORT': DB_PORT,
84         'USER': DB_USER,
85         'PASSWORD': DB_PASSWD,
86     },
87 }
88
89 redisco.connection_setup(host=REDIS_HOST, port=REDIS_PORT, password=REDIS_PASSWD, db=0)
90 # CACHE_BACKEND = 'redis_cache.cache://%s@%s:%s' % (REDIS_PASSWD, REDIS_HOST, REDIS_PORT)
91
92 TIME_ZONE = 'UTC'
93
94 # Static files (CSS, JavaScript, Images)
95 # https://docs.djangoproject.com/en/1.6/howto/static-files/
96
97 STATIC_URL = '/static/'
98
99 LOGGING = {
100     'version': 1,
101     'disable_existing_loggers': True,
102     'formatters': {
103         'standard': {
104             'format': '%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s',
105         },
106     },
107     'filters': {
108     },
109     'handlers': {
110         'lcm_handler': {
111             'level': 'DEBUG',
112             'class': 'logging.handlers.RotatingFileHandler',
113             'filename': os.path.join(BASE_DIR, 'logs/runtime_lcm.log'),
114             'formatter': 'standard',
115             'maxBytes': 1024 * 1024 * 50,
116             'backupCount': 5,
117         },
118     },
119
120     'loggers': {
121         'lcm': {
122             'handlers': ['lcm_handler'],
123             'level': 'DEBUG',
124             'propagate': False
125         },
126     }
127 }
128
129 if 'test' in sys.argv:
130     from lcm.pub.config import config
131     config.REG_TO_MSB_WHEN_START = False
132     DATABASES = {}
133     DATABASES['default'] = {
134         'ENGINE': 'django.db.backends.sqlite3',
135         'NAME': ':memory:',
136     }
137     REST_FRAMEWORK = {}
138     import platform
139
140     if platform.system() == 'Linux':
141         TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
142         TEST_OUTPUT_VERBOSE = True
143         TEST_OUTPUT_DESCRIPTIONS = True
144         TEST_OUTPUT_DIR = 'test-reports'