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