Skip to content

Instantly share code, notes, and snippets.

@groovecoder
Created June 10, 2012 20:06
Show Gist options
  • Save groovecoder/2907165 to your computer and use it in GitHub Desktop.
Save groovecoder/2907165 to your computer and use it in GitHub Desktop.
DEMO_UPLOADS_ROOT = getattr(settings, 'DEMO_UPLOADS_ROOT',
'%s/uploads/demos' % getattr(settings, 'MEDIA_ROOT', 'media'))
DEMO_UPLOADS_URL = getattr(settings, 'DEMO_UPLOADS_URL',
'%s/uploads/demos' % getattr(settings, 'MEDIA_URL', '/media'))
demo_uploads_fs = FileSystemStorage(location=DEMO_UPLOADS_ROOT, base_url=DEMO_UPLOADS_URL)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment