django-embed-video/embed_video/tests/django_settings.py
Juda Kaleta 20733d8997 tests
2013-06-01 14:04:45 +02:00

29 lines
543 B
Python

import os
from django.conf.global_settings import *
DEBUG = True
STATIC_ROOT = MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'static')
STATIC_URL = MEDIA_URL = '/static/'
INSTALLED_APPS = (
'embed_video',
)
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'console':{
'level':'DEBUG',
'class':'logging.StreamHandler',
},
},
'loggers': {
'less': {
'handlers': ['console'],
'level': 'DEBUG',
},
}
}