-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.devel.py
47 lines (37 loc) · 1.08 KB
/
settings.devel.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
Local settings for ecobasa project
"""
from __future__ import unicode_literals
from .default_settings import *
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ADMINS = (
# ('Your Name', '[email protected]'),
)
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'ecobasa.sql',
},
}
SOUTH_MIGRATION_MODULES = {
'taggit': 'taggit.south_migrations',
'postman': 'postman.south_migrations',
}
FIXTURE_DIRS = (
os.path.abspath(os.path.join(os.path.dirname( __file__ ),
'ecobasa',
'fixtures')),
)
# Hosts/domain names that are valid for this site; required if DEBUG is False
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
ALLOWED_HOSTS = []
# Make this unique, and don't share it with anybody.
SECRET_KEY = 'r(y6&k-^j^lz2_)bpt&89v2aqy=2c%f^ppff2v5fptk%a11*_!'
SECURE_PROXY_SSL_HEADER = None
SECURE_SSL_REDIRECT = False
SESSION_COOKIE_SECURE = False
CSRF_COOKIE_SECURE = False
SECURE_HSTS_SECONDS = 3600
SECURE_HSTS_INCLUDE_SUBDOMAINS = False