several changes on auth flow
[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 = "authosm.OsmUser"
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 'django.contrib.sessions',
49 'authosm',
50 'projecthandler',
51 'vimhandler',
52 'instancehandler',
53 'sdnctrlhandler',
54
55 ]
56
57 MIDDLEWARE_CLASSES = [
58 'django.middleware.security.SecurityMiddleware',
59 'django.contrib.sessions.middleware.SessionMiddleware',
60 'projecthandler.middleware.OsmProjectMiddleware',
61 'django.middleware.common.CommonMiddleware',
62 'django.middleware.csrf.CsrfViewMiddleware',
63 'django.contrib.auth.middleware.AuthenticationMiddleware',
64 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
65 'django.contrib.messages.middleware.MessageMiddleware',
66 'django.middleware.clickjacking.XFrameOptionsMiddleware',
67
68
69 ]
70
71 SESSION_ENGINE ='django.contrib.sessions.backends.db'
72 SESSION_COOKIE_AGE = 3500 #25 min
73 SESSION_EXPIRE_AT_BROWSER_CLOSE = True
74 SESSION_SAVE_EVERY_REQUEST = True
75
76 ROOT_URLCONF = 'sf_t3d.urls'
77
78 TEMPLATES = [
79 {
80 'BACKEND': 'django.template.backends.django.DjangoTemplates',
81 'DIRS': [
82 os.path.join(BASE_DIR, 'template'),
83 os.path.join(BASE_DIR, 'projecthandler', 'template'),
84 os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'),
85 os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'),
86 os.path.join(BASE_DIR, 'vimhandler', 'template'),
87 os.path.join(BASE_DIR, 'instancehandler', 'template'),
88 os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'),
89 ],
90 'APP_DIRS': True,
91 'OPTIONS': {
92 'context_processors': [
93 'django.template.context_processors.debug',
94 'django.template.context_processors.request',
95 'django.contrib.auth.context_processors.auth',
96 'django.contrib.messages.context_processors.messages',
97 'sf_t3d.context_processor.conf_constants',
98 ],
99 'libraries':{
100 'get': 'sf_t3d.templatetags.get',
101 'date_tag': 'sf_t3d.templatetags.datetag',
102 }
103 },
104 },
105 ]
106
107 WSGI_APPLICATION = 'sf_t3d.wsgi.application'
108
109
110 # Database
111 # https://docs.djangoproject.com/en/1.9/ref/settings/#databases
112
113 DATABASES = {
114 'default': {
115 'ENGINE': 'django.db.backends.sqlite3',
116 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
117 }
118 }
119
120 AUTHENTICATION_BACKENDS = ['authosm.backend.OsmBackend']
121
122
123 # Password validation
124 # https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
125
126 AUTH_PASSWORD_VALIDATORS = [
127 {
128 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
129 },
130 {
131 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
132 },
133 {
134 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
135 },
136 {
137 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
138 },
139 ]
140
141
142 # Internationalization
143 # https://docs.djangoproject.com/en/1.9/topics/i18n/
144
145 LANGUAGE_CODE = 'en-us'
146
147 TIME_ZONE = 'UTC'
148
149 USE_I18N = True
150
151 USE_L10N = True
152
153 USE_TZ = True
154
155
156 # Static files (CSS, JavaScript, Images)
157 # https://docs.djangoproject.com/en/1.9/howto/static-files/
158
159 STATIC_URL = '/static/'
160
161 STATICFILES_FINDERS = (
162 'django.contrib.staticfiles.finders.FileSystemFinder',
163 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
164 'django.contrib.staticfiles.finders.DefaultStorageFinder'
165 )
166
167 STATICFILES_DIRS = (
168 # Put strings here, like "/home/html/static" or "C:/www/django/static".
169 # Always use forward slashes, even on Windows.
170 # Don't forget to use absolute paths, not relative paths.
171 os.path.join(BASE_DIR, "static"),
172 )
173
174 LOCALE_PATHS = (
175 os.path.join(BASE_DIR, 'locale'),
176 )