django-embed-video/embed_video/tests/django_settings.py

30 lines
543 B
Python
Raw Normal View History

2013-06-01 12:04:45 +00:00
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',
},
}
}