blob: 2b22ac1dd17be760f142458eba751bc1ad2c50a8 [file] [log] [blame]
lombardofr3218b2b2018-10-29 13:41:08 +01001#
2# Copyright 2018 EveryUP Srl
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
lombardoffb37bca2018-05-03 16:20:04 +020016
17import os
18
19# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
20BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
21
22
23# Quick-start development settings - unsuitable for production
24# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
25
26# SECURITY WARNING: keep the secret key used in production secret!
27SECRET_KEY = 'o5+o2jv(3-dqr(&ia#-@79cgr%xi*s+6xjws^8cxp211ge#buf'
lombardofrc89a4a02018-09-02 16:15:25 +020028if os.getenv('DJANGO_ENV') == 'prod':
29 DEBUG = False
30else:
31 DEBUG = True
32 print DEBUG
33ALLOWED_HOSTS = ['*']
lombardoffb37bca2018-05-03 16:20:04 +020034
lombardofr099364f2018-06-12 11:21:02 +020035AUTH_USER_MODEL = "authosm.OsmUser"
lombardoffb37bca2018-05-03 16:20:04 +020036
lombardof33848292018-05-08 10:12:14 +020037SITE_NAME = "Open Source MANO"
38SHORT_SITE_NAME = "OSM"
lombardoffb37bca2018-05-03 16:20:04 +020039
40LOGIN_URL = '/auth/'
41LOGOUT_URL = '/auth/'
42
43VERSION = "0.0.1"
44
45
46# Application definition
47INSTALLED_APPS = [
48 'django.contrib.admin',
49 'django.contrib.auth',
50 'django.contrib.contenttypes',
51 'django.contrib.messages',
52 'django.contrib.staticfiles',
lombardofr07930222018-06-19 16:59:45 +020053 'django.contrib.sessions',
lombardofr099364f2018-06-12 11:21:02 +020054 'authosm',
lombardoffb37bca2018-05-03 16:20:04 +020055 'projecthandler',
lombardofr3218b2b2018-10-29 13:41:08 +010056 'descriptorhandler',
lombardoffb37bca2018-05-03 16:20:04 +020057 'vimhandler',
lombardofa03da5e2018-06-02 18:36:44 +020058 'instancehandler',
lombardofr099364f2018-06-12 11:21:02 +020059 'sdnctrlhandler',
lombardofr10b52d12018-07-17 23:42:28 +020060 'userhandler'
lombardofr099364f2018-06-12 11:21:02 +020061
lombardoffb37bca2018-05-03 16:20:04 +020062]
63
64MIDDLEWARE_CLASSES = [
65 'django.middleware.security.SecurityMiddleware',
66 'django.contrib.sessions.middleware.SessionMiddleware',
lombardofr99f922f2018-07-17 17:27:36 +020067 'projecthandler.middleware.OsmProjectMiddleware',
lombardoffb37bca2018-05-03 16:20:04 +020068 'django.middleware.common.CommonMiddleware',
69 'django.middleware.csrf.CsrfViewMiddleware',
70 'django.contrib.auth.middleware.AuthenticationMiddleware',
71 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
72 'django.contrib.messages.middleware.MessageMiddleware',
73 'django.middleware.clickjacking.XFrameOptionsMiddleware',
74
lombardofr99f922f2018-07-17 17:27:36 +020075
lombardoffb37bca2018-05-03 16:20:04 +020076]
77
lombardofr07930222018-06-19 16:59:45 +020078SESSION_ENGINE ='django.contrib.sessions.backends.db'
lombardoffb37bca2018-05-03 16:20:04 +020079SESSION_COOKIE_AGE = 3500 #25 min
80SESSION_EXPIRE_AT_BROWSER_CLOSE = True
81SESSION_SAVE_EVERY_REQUEST = True
82
83ROOT_URLCONF = 'sf_t3d.urls'
84
85TEMPLATES = [
86 {
87 'BACKEND': 'django.template.backends.django.DjangoTemplates',
88 'DIRS': [
89 os.path.join(BASE_DIR, 'template'),
90 os.path.join(BASE_DIR, 'projecthandler', 'template'),
91 os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'),
92 os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'),
lombardofr3218b2b2018-10-29 13:41:08 +010093 os.path.join(BASE_DIR, 'descriptorhandler', 'template'),
lombardoffb37bca2018-05-03 16:20:04 +020094 os.path.join(BASE_DIR, 'vimhandler', 'template'),
95 os.path.join(BASE_DIR, 'instancehandler', 'template'),
lombardofa03da5e2018-06-02 18:36:44 +020096 os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'),
lombardofr10b52d12018-07-17 23:42:28 +020097 os.path.join(BASE_DIR, 'userhandler', 'templates'),
lombardoffb37bca2018-05-03 16:20:04 +020098 ],
99 'APP_DIRS': True,
100 'OPTIONS': {
101 'context_processors': [
102 'django.template.context_processors.debug',
103 'django.template.context_processors.request',
104 'django.contrib.auth.context_processors.auth',
105 'django.contrib.messages.context_processors.messages',
106 'sf_t3d.context_processor.conf_constants',
107 ],
108 'libraries':{
109 'get': 'sf_t3d.templatetags.get',
lombardof74ed51a2018-05-11 01:07:01 +0200110 'date_tag': 'sf_t3d.templatetags.datetag',
lombardoffb37bca2018-05-03 16:20:04 +0200111 }
112 },
113 },
114]
115
116WSGI_APPLICATION = 'sf_t3d.wsgi.application'
117
118
119# Database
120# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
121
122DATABASES = {
123 'default': {
124 'ENGINE': 'django.db.backends.sqlite3',
125 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
126 }
127}
128
lombardofr099364f2018-06-12 11:21:02 +0200129AUTHENTICATION_BACKENDS = ['authosm.backend.OsmBackend']
130
lombardoffb37bca2018-05-03 16:20:04 +0200131
132# Password validation
133# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
134
135AUTH_PASSWORD_VALIDATORS = [
136 {
137 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
138 },
139 {
140 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
141 },
142 {
143 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
144 },
145 {
146 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
147 },
148]
149
150
151# Internationalization
152# https://docs.djangoproject.com/en/1.9/topics/i18n/
153
154LANGUAGE_CODE = 'en-us'
155
156TIME_ZONE = 'UTC'
157
158USE_I18N = True
159
160USE_L10N = True
161
162USE_TZ = True
163
164
165# Static files (CSS, JavaScript, Images)
166# https://docs.djangoproject.com/en/1.9/howto/static-files/
167
168STATIC_URL = '/static/'
lombardofrc89a4a02018-09-02 16:15:25 +0200169if DEBUG:
170 STATICFILES_FINDERS = (
171 'django.contrib.staticfiles.finders.FileSystemFinder',
172 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
173 'django.contrib.staticfiles.finders.DefaultStorageFinder'
174 )
175 STATICFILES_DIRS = (
176 # Put strings here, like "/home/html/static" or "C:/www/django/static".
177 # Always use forward slashes, even on Windows.
178 # Don't forget to use absolute paths, not relative paths.
179 os.path.join(BASE_DIR, "static"),
180 )
181else:
182 STATIC_ROOT = os.path.join(BASE_DIR, "static/")
lombardoffb37bca2018-05-03 16:20:04 +0200183
184LOCALE_PATHS = (
185 os.path.join(BASE_DIR, 'locale'),
lombardofrc89a4a02018-09-02 16:15:25 +0200186)