I\'m running Django\'s development server (runserver) on my local machine (Mac OS X) and cannot get the CSS files to load.
runserver
Here are the relevant entries
I had to use
STATICFILES_DIRS = ( '/home/USERNAME/webapps/django/PROJECT/static/', )
That helped me.