8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-18 08:38:09 +00:00
re2o/re2o/settings.py

172 lines
5.4 KiB
Python
Raw Normal View History

# -*- mode: python; coding: utf-8 -*-
2017-01-15 23:01:18 +00:00
# Re2o est un logiciel d'administration développé initiallement au rezometz. Il
# se veut agnostique au réseau considéré, de manière à être installable en
# quelques clics.
#
# Copyright © 2017 Gabriel Détraz
# Copyright © 2017 Goulven Kermarec
# Copyright © 2017 Augustin Lemesle
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2016-07-04 23:15:51 +00:00
"""
Django settings for re2o project.
Generated by 'django-admin startproject' using Django 1.8.13.
For more information on this file, see
https://docs.djangoproject.com/en/1.8/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.8/ref/settings/
"""
from __future__ import unicode_literals
2016-07-04 23:15:51 +00:00
import os
2017-06-17 19:26:18 +00:00
from .settings_local import *
2016-07-04 23:15:51 +00:00
2018-04-14 19:29:16 +00:00
# The root directory for the project
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
2016-07-04 23:15:51 +00:00
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Auth definition
PASSWORD_HASHERS = (
're2o.login.SSHAPasswordHasher',
'django.contrib.auth.hashers.PBKDF2PasswordHasher',
)
2018-04-14 19:29:16 +00:00
AUTH_USER_MODEL = 'users.User' # The class to use for authentication
LOGIN_URL = '/login/' # The URL for login page
LOGIN_REDIRECT_URL = '/' # The URL for redirecting after login
2016-07-04 23:15:51 +00:00
# Application definition
2018-04-14 19:29:16 +00:00
DJANGO_CONTRIB_APPS = (
2016-07-04 23:15:51 +00:00
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
2018-04-14 19:29:16 +00:00
)
EXTERNAL_CONTRIB_APPS = (
2016-07-04 23:15:51 +00:00
'bootstrap3',
2018-04-14 19:29:16 +00:00
'rest_framework',
'reversion',
)
LOCAL_APPS = (
2016-07-04 23:15:51 +00:00
'users',
'machines',
'cotisations',
'topologie',
'search',
2016-07-19 01:12:48 +00:00
're2o',
'preferences',
2016-07-04 23:15:51 +00:00
'logs',
2018-04-14 19:29:16 +00:00
'api',
)
INSTALLED_APPS = (
DJANGO_CONTRIB_APPS +
EXTERNAL_CONTRIB_APPS +
LOCAL_APPS +
OPTIONNAL_APPS
)
2016-07-04 23:15:51 +00:00
MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.locale.LocaleMiddleware',
2016-07-04 23:15:51 +00:00
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
'django.middleware.security.SecurityMiddleware',
'reversion.middleware.RevisionMiddleware',
2016-07-04 23:15:51 +00:00
)
2018-04-14 19:29:16 +00:00
# The root url module to define the project URLs
2016-07-04 23:15:51 +00:00
ROOT_URLCONF = 're2o.urls'
2018-04-14 19:29:16 +00:00
# The templates configuration (see Django documentation)
2016-07-04 23:15:51 +00:00
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
2018-04-14 19:29:16 +00:00
# Use only absolute paths with '/' delimiters even on Windows
os.path.join(BASE_DIR, 'templates').replace('\\', '/'),
],
2016-07-04 23:15:51 +00:00
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'django.template.context_processors.request',
're2o.context_processors.context_user',
2016-07-04 23:15:51 +00:00
],
},
},
]
2018-04-14 19:29:16 +00:00
# The WSGI module to use in a server environment
2016-07-04 23:15:51 +00:00
WSGI_APPLICATION = 're2o.wsgi.application'
# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/
LANGUAGE_CODE = 'en'
2018-04-14 19:29:16 +00:00
USE_I18N = True
USE_L10N = True
2018-04-10 22:07:26 +00:00
# Proritary location search for translations
# then searches in {app}/locale/ for app in INSTALLED_APPS
2018-04-14 19:29:16 +00:00
# Use only absolute paths with '/' delimiters even on Windows
2018-04-10 22:07:26 +00:00
LOCALE_PATHS = [
2018-04-14 19:29:16 +00:00
# For translations outside of apps
os.path.join(BASE_DIR, 'templates', 'locale').replace('\\', '/')
2018-04-10 22:07:26 +00:00
]
2018-04-14 19:29:16 +00:00
# Should use time zone ?
2016-07-04 23:15:51 +00:00
USE_TZ = True
2018-04-14 19:29:16 +00:00
# Router config for database
DATABASE_ROUTERS = ['ldapdb.router.Router']
2018-04-14 19:29:16 +00:00
# django-bootstrap3 config
2016-07-04 23:15:51 +00:00
BOOTSTRAP3 = {
2018-04-14 19:29:16 +00:00
'jquery_url': '/static/js/jquery-2.2.4.min.js',
'base_url': '/static/bootstrap/',
'include_jquery': True,
}
2016-07-04 23:15:51 +00:00
BOOTSTRAP_BASE_URL = '/static/bootstrap/'
2018-04-14 19:29:16 +00:00
# Directories where collectstatic should look for static files
# Use only absolute paths with '/' delimiters even on Windows
2016-07-04 23:15:51 +00:00
STATICFILES_DIRS = (
2018-04-14 19:29:16 +00:00
os.path.join(BASE_DIR, 'static').replace('\\', '/'),
2016-07-04 23:15:51 +00:00
)
# Directory where the static files served by the server are stored
STATIC_ROOT = os.path.join(BASE_DIR, 'static_files')
2018-04-14 19:29:16 +00:00
# The URL to access the static files
STATIC_URL = '/static/'
# Directory where the media files served by the server are stored
2018-04-14 19:29:16 +00:00
MEDIA_ROOT = os.path.join(BASE_DIR, 'media').replace('\\', '/')
# The URL to access the static files
MEDIA_URL = '/media/'
2018-04-14 19:29:16 +00:00
# Models to use for graphs
GRAPH_MODELS = {
2018-04-14 19:29:16 +00:00
'all_applications': True,
'group_models': True,
}