From d3c9e3e5aa5819ec33170a58b5d832e8cf766efe Mon Sep 17 00:00:00 2001 From: Stephen McQuay Date: Tue, 23 Apr 2013 18:06:58 -0700 Subject: [PATCH] collect static files elsewhere --- mmg/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmg/settings.py b/mmg/settings.py index 77a1f0c..d4f571f 100644 --- a/mmg/settings.py +++ b/mmg/settings.py @@ -57,7 +57,7 @@ MEDIA_URL = '' # Don't put anything in this directory yourself; store your static files # in apps' "static/" subdirectories and in STATICFILES_DIRS. # Example: "/var/www/example.com/static/" -STATIC_ROOT = '' +STATIC_ROOT = os.path.expanduser('~/tmp/mmg') # URL prefix for static files. # Example: "http://example.com/static/", "http://static.example.com/"