658bafd7687657005bf773aabb32fd505eb019c9
[osm/LW-UI.git] / sf_t3d / settings.py
1 """
2 Django settings for sf_t3d project.
3
4 Generated by 'django-admin startproject' using Django 1.9.
5
6 For more information on this file, see
7 https://docs.djangoproject.com/en/1.9/topics/settings/
8
9 For the full list of settings and their values, see
10 https://docs.djangoproject.com/en/1.9/ref/settings/
11 """
12
13 import os
14
15 # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16 BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
17
18
19 # Quick-start development settings - unsuitable for production
20 # See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
21
22 # SECURITY WARNING: keep the secret key used in production secret!
23 SECRET_KEY = 'o5+o2jv(3-dqr(&ia#-@79cgr%xi*s+6xjws^8cxp211ge#buf'
24
25 # SECURITY WARNING: don't run with debug turned on in production!
26 DEBUG = True
27
28 ALLOWED_HOSTS = []
29
30 AUTH_USER_MODEL = "sf_user.CustomUser"
31
32 SITE_NAME = "Open Source MANO"
33 SHORT_SITE_NAME = "OSM"
34
35 LOGIN_URL = '/auth/'
36 LOGOUT_URL = '/auth/'
37
38 VERSION = "0.0.1"
39
40
41 # Application definition
42 INSTALLED_APPS = [
43 'django.contrib.admin',
44 'django.contrib.auth',
45 'django.contrib.contenttypes',
46 'django.contrib.messages',
47 'django.contrib.staticfiles',
48 'sf_user',
49 'projecthandler',
50 'vimhandler',
51 'instancehandler',
52 'sdnctrlhandler'
53 ]
54
55 MIDDLEWARE_CLASSES = [
56 'django.middleware.security.SecurityMiddleware',
57 'django.contrib.sessions.middleware.SessionMiddleware',
58 'django.middleware.common.CommonMiddleware',
59 'django.middleware.csrf.CsrfViewMiddleware',
60 'django.contrib.auth.middleware.AuthenticationMiddleware',
61 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
62 'django.contrib.messages.middleware.MessageMiddleware',
63 'django.middleware.clickjacking.XFrameOptionsMiddleware',
64
65 ]
66
67 SESSION_ENGINE='sf_user.sessions'
68 SESSION_COOKIE_AGE = 3500 #25 min
69 SESSION_EXPIRE_AT_BROWSER_CLOSE = True
70 SESSION_SAVE_EVERY_REQUEST = True
71
72 ROOT_URLCONF = 'sf_t3d.urls'
73
74 TEMPLATES = [
75 {
76 'BACKEND': 'django.template.backends.django.DjangoTemplates',
77 'DIRS': [
78 os.path.join(BASE_DIR, 'template'),
79 os.path.join(BASE_DIR, 'projecthandler', 'template'),
80 os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'),
81 os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'),
82 os.path.join(BASE_DIR, 'vimhandler', 'template'),
83 os.path.join(BASE_DIR, 'instancehandler', 'template'),
84 os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'),
85 ],
86 'APP_DIRS': True,
87 'OPTIONS': {
88 'context_processors': [
89 'django.template.context_processors.debug',
90 'django.template.context_processors.request',
91 'django.contrib.auth.context_processors.auth',
92 'django.contrib.messages.context_processors.messages',
93 'sf_t3d.context_processor.conf_constants',
94 ],
95 'libraries':{
96 'get': 'sf_t3d.templatetags.get',
97 'date_tag': 'sf_t3d.templatetags.datetag',
98 }
99 },
100 },
101 ]
102
103 WSGI_APPLICATION = 'sf_t3d.wsgi.application'
104
105
106 # Database
107 # https://docs.djangoproject.com/en/1.9/ref/settings/#databases
108
109 DATABASES = {
110 'default': {
111 'ENGINE': 'django.db.backends.sqlite3',
112 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
113 }
114 }
115
116
117 # Password validation
118 # https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
119
120 AUTH_PASSWORD_VALIDATORS = [
121 {
122 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
123 },
124 {
125 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
126 },
127 {
128 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
129 },
130 {
131 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
132 },
133 ]
134
135
136 # Internationalization
137 # https://docs.djangoproject.com/en/1.9/topics/i18n/
138
139 LANGUAGE_CODE = 'en-us'
140
141 TIME_ZONE = 'UTC'
142
143 USE_I18N = True
144
145 USE_L10N = True
146
147 USE_TZ = True
148
149
150 # Static files (CSS, JavaScript, Images)
151 # https://docs.djangoproject.com/en/1.9/howto/static-files/
152
153 STATIC_URL = '/static/'
154
155 STATICFILES_FINDERS = (
156 'django.contrib.staticfiles.finders.FileSystemFinder',
157 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
158 'django.contrib.staticfiles.finders.DefaultStorageFinder'
159 )
160
161 STATICFILES_DIRS = (
162 # Put strings here, like "/home/html/static" or "C:/www/django/static".
163 # Always use forward slashes, even on Windows.
164 # Don't forget to use absolute paths, not relative paths.
165 os.path.join(BASE_DIR, "static"),
166 )
167
168 LOCALE_PATHS = (
169 os.path.join(BASE_DIR, 'locale'),
170 )