I have a very simple question which I was not able to find an answer. Using Django staticfiles app, I call the statics collect routine by typing this command line : python manage.py collectstatic.
My problem is that I've several applications serving statics + a media directory containing user-uploaded files. Django copies all the files to the static directory, including media files!
I just would like Django to not copy user-uploaded files to the static directory when I call python manage.py collectstatic. Does anyone have an idea? Tried --ignore option but without success...
Thank you in advance.
MEDIA_ROOT/*toSTATIC_ROOT. So I'm affraid it will end to overload my server by duplicating every single user-uploaded file... – user650108 Feb 29 '12 at 12:00MEDIA_ROOTis not collected into static by default. You'd have to tell Django to do that. Have you perhaps added the same directory toSTATICFILES_DIRS? – Chris Pratt Feb 29 '12 at 15:24