From c51304bc27951fa92b6f2bd8340ac2172ed06d88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 4 Sep 2014 10:31:53 +0200 Subject: [PATCH] README: mention global_settings.STATICFILES_FINDERS --- README.txt | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.txt b/README.txt index 00de1da..d06601d 100644 --- a/README.txt +++ b/README.txt @@ -3,11 +3,10 @@ Configuration You should add gadjo.finders.XStaticFinder to STATICFILES_FINDERS, - STATICFILES_FINDERS = ( - "django.contrib.staticfiles.finders.FileSystemFinder", - "django.contrib.staticfiles.finders.AppDirectoriesFinder", - "gadjo.finders.XStaticFinder", - ) + from django.conf import global_settings + + STATICFILES_FINDERS = global_settings.STATICFILES_FINDERS + \ + ('gadjo.finders.XStaticFinder',) There is a CDNS settings, that can contain a list of (cdn name, protocol) tuples; for example: