import os
BASE_DIR = os.path.dirname(os.path.abspath(__file__)).rstrip("/")+"/"
BASE_URL = '/hdabo/'
WEB_URL = 'http://localhost'
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = os.path.abspath(BASE_DIR + "../static/media/")
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
MEDIA_URL = BASE_URL + "static/media/"
# Absolute path to the directory static files should be collected to.
# Don't put anything in this directory yourself; store your static files
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = os.path.abspath(BASE_DIR + "../../web/static/site/")
# URL prefix for static files.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = BASE_URL + "static/site/"
# Additional locations of static files
STATICFILES_DIRS = (
# Put strings here, like "/home/html/static" or "C:/www/django/static".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'hdabo', # Or path to database file if using sqlite3.
'USER': 'iri', # Not used with sqlite3.
'PASSWORD': 'iri', # Not used with sqlite3.
'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '5432', # Set to empty string for default. Not used with sqlite3.
}
}
HAYSTACK_CONNECTIONS = {
'default': {
# the elasticsearch_backend is probably temporary
#'ENGINE': 'hdabo.search.french_whoosh_backend.SearchBackend',
'ENGINE': 'haystack.backends.elasticsearch_backend.ElasticsearchSearchEngine',
'URL': 'http://127.0.0.1:9200/',
'INDEX_NAME': 'hdabo',
},
}
LOG_FILE = os.path.abspath(os.path.join(BASE_DIR,"../../run/log/log.txt"))
LOG_LEVEL = logging.DEBUG
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters' : {
'simple' : {
'format': "%(asctime)s - %(levelname)s : %(message)s",
},
'semi-verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(message)s'
},
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler'
},
'stream_to_console': {
'level': LOG_LEVEL,
'class': 'logging.StreamHandler'
},
'file': {
'level': LOG_LEVEL,
'class': 'logging.FileHandler',
'filename': LOG_FILE,
'formatter': 'semi-verbose',
},
} ,
'loggers': {
'hdabo': {
'handlers': ['file'],
'level': LOG_LEVEL,
'propagate': True,
},
'hdalab': {
'handlers': ['file'],
'level': LOG_LEVEL,
'propagate': True,
},
# 'django.db.backends':{
# 'handlers': ['file'],
# 'level': LOG_LEVEL,
# 'propagate': True,
# },
# 'django.request': {
# 'handlers': ['file'],
# 'level': LOG_LEVEL,
# 'propagate': True,
# },
}
}