mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-04-13 09:41:00 +00:00
29 lines
543 B
Python
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',
|
|
},
|
|
}
|
|
}
|