Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
# -*- coding: utf-8 -*-
|
|
|
|
import os.path
|
|
|
|
#
|
|
# Testovaci nastaveni settings.py (testovani na atreyi)
|
|
#
|
|
# Pro vyber tohoto nastaveni muzete pouzit tez:
|
|
# DJANGO_SETTINGS_MODULE=mamweb.settings_test ./manage.py ...
|
|
#
|
|
|
|
# Import common settings
|
|
from .settings_common import * # zatim nutne, casem snad vyresime # noqa
|
|
|
|
MIDDLEWARE_CLASSES += (
|
|
'debug_toolbar.middleware.DebugToolbarMiddleware',
|
|
)
|
|
|
|
# Quick-start development settings - unsuitable for production
|
|
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
|
|
|
|
INSTALLED_APPS += (
|
|
'debug_toolbar',
|
|
'django_extensions',
|
|
)
|
|
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY = ')^u=i65*zmr_k53a*@f4q_+ji^o@!pgpef*5&8c7zzv9l+zo)n'
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG = True
|
|
|
|
TEMPLATES[0]['OPTIONS']['debug'] = True
|
|
|
|
ALLOWED_HOSTS = ['*.mam.mff.cuni.cz', 'atrey.karlin.mff.cuni.cz', 'mam.mff.cuni.cz', 'mam-test.kam.mff.cuni.cz', 'gimli.ms.mff.cuni.cz']
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'NAME': 'mam_test',
|
|
'USER': 'mam-web',
|
|
'TEST': {
|
|
'NAME': 'mam-test-testdb',
|
|
},
|
|
},
|
|
}
|
|
|
|
import os
|
|
|
|
SERVER_EMAIL = 'mamweb-test-errors@mam.mff.cuni.cz'
|
|
ADMINS = [
|
|
('M&M ERRORs', 'mam-errors@mam.mff.cuni.cz'),
|
|
]
|
|
|
|
|
|
# SECURITY: only send sensitive cookies via HTTPS
|
|
|
|
SESSION_COOKIE_SECURE = True
|
|
CSRF_COOKIE_SECURE = True
|
|
|
|
# LOGGING
|
|
|
|
LOGGING['loggers']['']['handlers'] = ['console', 'mail_admins']
|
|
LOGGING['loggers']['django']['handlers'] = ['console', 'mail_admins']
|
|
|