Skip to content

Instantly share code, notes, and snippets.

@juanmhidalgo
Last active February 11, 2016 14:39
Show Gist options
  • Save juanmhidalgo/1150977a9ca05949a94f to your computer and use it in GitHub Desktop.
Save juanmhidalgo/1150977a9ca05949a94f to your computer and use it in GitHub Desktop.
[django] Serve static files
from django.conf.urls.static import static
from django.conf import settings
if settings.DEBUG:
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment